diff --git a/frontend/public/index.html b/frontend/public/index.html index 3989a83..12c8036 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -1,18 +1,20 @@ - + - + @@ -23,11 +25,17 @@ content="ValidKube combines the best open-source tools to help ensure Kubernetes YAML best practices, hygiene & security." /> + + - - diff --git a/frontend/src/components/GenericComponents/Tabs.tsx b/frontend/src/components/GenericComponents/Tabs.tsx index 2c2db3f..3c35b93 100644 --- a/frontend/src/components/GenericComponents/Tabs.tsx +++ b/frontend/src/components/GenericComponents/Tabs.tsx @@ -6,10 +6,10 @@ const TabsContainer = styled.div` margin-bottom: 0.8rem; -ms-overflow-style: none; scrollbar-width: none; - @media only screen and (max-width: 600px){ + @media only screen and (max-width: 600px) { width: 85vw; overflow-x: scroll; - } + } ::-webkit-scrollbar { display: none; } diff --git a/frontend/src/components/MainView/MainViewHeader.tsx b/frontend/src/components/MainView/MainViewHeader.tsx index 443eb7d..d1e88de 100644 --- a/frontend/src/components/MainView/MainViewHeader.tsx +++ b/frontend/src/components/MainView/MainViewHeader.tsx @@ -15,6 +15,7 @@ import { ThemePreference } from "../Context/ThemeContext"; export const KOMODOR_COM = "https://komodor.com/"; export const TWITTER_URL = "https://twitter.com/Komodor_com"; export const LINKEDIN_URL = "https://www.linkedin.com/company/komodor-ltd/"; +export const GITHUB_URL = "https://github.com/komodorio"; const Container = styled.div` padding: 1% 1.5%; @@ -29,6 +30,7 @@ const Container = styled.div` const GitContainer = styled.div` align-items: center; display: flex; + cursor: pointer; @media (max-width: 30rem) { padding-left: 1.5rem; } @@ -109,7 +111,7 @@ const MainViewHeader: React.FC = () => { window.open(TWITTER_URL)} /> - + window.open(GITHUB_URL)}/> { if (onPerfEntry && onPerfEntry instanceof Function) { - import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { + import("web-vitals").then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { getCLS(onPerfEntry); getFID(onPerfEntry); getFCP(onPerfEntry); diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index f199ca8..d26ce47 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, @@ -20,7 +16,5 @@ "noEmit": true, "jsx": "preserve" }, - "include": [ - "src" - ] + "include": ["src"] }