diff --git a/.gitignore b/.gitignore index 105c4cb..a7c6725 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ yarn-error.log* pnpm-debug.log* lerna-debug.log* +yarn.lock node_modules .DS_Store dist/ diff --git a/README.md b/README.md index dff0131..802ffe1 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,9 @@ Forked From [Vanilla OS website](https://github.com/vanilla-os). -No details for now. +## Setup Development +```bash +npm install +npm run dev + +``` diff --git a/logo-white.png b/logo-white.png deleted file mode 100644 index 1a667f1..0000000 Binary files a/logo-white.png and /dev/null differ diff --git a/logo.png b/logo.png deleted file mode 100644 index 8b755a4..0000000 Binary files a/logo.png and /dev/null differ diff --git a/public/assets/css/common.css b/public/assets/css/common.css index e0f4988..b5dbe4c 100644 --- a/public/assets/css/common.css +++ b/public/assets/css/common.css @@ -1,6 +1,6 @@ :root { --base-shadow: 0px 10px 34px 0px rgba(0, 0, 0, 0.15); - color-scheme: light dark; + color-scheme: dark; } html { diff --git a/public/assets/css/pages/home.css b/public/assets/css/pages/home.css index e723cf3..a92f0bf 100644 --- a/public/assets/css/pages/home.css +++ b/public/assets/css/pages/home.css @@ -4,15 +4,15 @@ @media screen and (max-width: 1100px) { #context .hero .hero-heading { - margin-top: 20px; + margin-top: 20px !important; } #context .hero .hero-content { - max-width: 90%; + max-width: 90% !important; } #context .hero.hero-block .hero-content { - padding: 0 50px; + padding: 0 20px !important; } #context #about.hero .hero-wrapper, @@ -37,4 +37,20 @@ #context .hero#security .hero-image { width: 300px; } + + #context .hero .text { + font-size: 22px; + } + + #context .container { + padding: 0px !important; + } + + #context .hero:first-child() { + padding: 0px !important; + } + + #context .hero { + padding: 0 25px !important; + } } diff --git a/public/assets/css/print.css b/public/assets/css/print.css index 76900b7..ac1ae1f 100644 --- a/public/assets/css/print.css +++ b/public/assets/css/print.css @@ -1,5 +1,4 @@ @media print { - .topBar, .siteFooter, .page-actions, diff --git a/src/main.ts b/src/main.ts index 4a795a2..e6a4d50 100644 --- a/src/main.ts +++ b/src/main.ts @@ -6,7 +6,6 @@ import createRouterInstance from './router' import ComponentLoader from "@/components/loader"; export function createApp(clientType: string) { - console.log('creating new app instance') const app = createSSRApp(App) const head = createHead() const router = createRouterInstance(clientType) diff --git a/src/router/index.ts b/src/router/index.ts index 7b4ee8d..98367d8 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -3,8 +3,6 @@ import { useHead } from 'unhead' export default function createRouterInstance(clientType: string) { - console.log('creating new router instance') - const history = clientType === 'server' ? createMemoryHistory(import.meta.env.BASE_URL) : createWebHistory(import.meta.env.BASE_URL); diff --git a/src/views/Home.vue b/src/views/Home.vue index b1ef87e..d4e3fc7 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -1,8 +1,8 @@