diff --git a/app/assets/styles/header.css b/app/assets/styles/header.css index 74df67a..43b0c3f 100755 --- a/app/assets/styles/header.css +++ b/app/assets/styles/header.css @@ -3,13 +3,19 @@ top: 0; z-index: 100; background: var(--color-main-darkest); + display: flex; + align-items: center; + gap: 1rem; + padding: var(--padding-default); + + & .logo { + height: 40px; + } & header { display: flex; align-items: center; justify-content: space-between; - padding: var(--padding-default); - padding-bottom: 0; font-family: 'Roboto', sans-serif; font-weight: bold; diff --git a/app/assets/styles/page.css b/app/assets/styles/page.css index 469d149..eb9426d 100644 --- a/app/assets/styles/page.css +++ b/app/assets/styles/page.css @@ -23,7 +23,6 @@ .search-bar { z-index: 100; - padding: 0 1rem 1rem 1rem; & p { font-family: 'Roboto Condensed', sans-serif; diff --git a/app/components/Pp/Header.vue b/app/components/Pp/Header.vue index 81c1ffd..e64430a 100755 --- a/app/components/Pp/Header.vue +++ b/app/components/Pp/Header.vue @@ -1,24 +1,27 @@ diff --git a/app/pages/index.vue b/app/pages/index.vue index b2b0a12..1424bee 100755 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -14,7 +14,7 @@ />
diff --git a/nuxt.config.ts b/nuxt.config.ts index 25e6afd..846366a 100755 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -24,6 +24,8 @@ export default defineNuxtConfig({ head: { htmlAttrs: { lang: 'de' }, link: [ + { rel: 'preload', as: 'image', href: '/img/propapier.svg', type: 'image/svg+xml' }, + { rel: 'icon', type: 'image/x-icon', href: '/favicon.svg' }, { rel: 'preload', crossorigin: 'anonymous', as: 'font', href: '/fonts/opensans.woff2', type: 'font/woff2' }, { rel: 'preload', crossorigin: 'anonymous', as: 'font', href: '/fonts/roboto_con_bold.woff2', type: 'font/woff2' }, { rel: 'preload', crossorigin: 'anonymous', as: 'font', href: '/fonts/roboto_con_reg.woff2', type: 'font/woff2' }, diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100755 index 18993ad..0000000 Binary files a/public/favicon.ico and /dev/null differ diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100755 index 0000000..1446740 --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/propapier.svg b/public/img/propapier.svg new file mode 100755 index 0000000..1446740 --- /dev/null +++ b/public/img/propapier.svg @@ -0,0 +1 @@ + \ No newline at end of file