- Add design tokens (colors, spacing, radius, shadows, typography, transitions) - Add global reset, body/link/focus/typography base styles - Add utility classes (container, surface-card, btn variants, field, badge, message, divider) - Replace header ✉ symbol with inline SVG envelope icon - Update favicon to license-plate shaped mark with blue gradient and bold B - Rename brand from BilHälsning to Bilhej in header, footer, and HTML title - Rewrite footer tagline: focus on service, not privacy - Add theme-color meta tag for browser chrome
19 lines
357 B
Vue
19 lines
357 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
import AppHeader from '@/components/AppHeader.vue'
|
|
import AppFooter from '@/components/AppFooter.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<AppHeader />
|
|
<main class="app__main">
|
|
<RouterView />
|
|
</main>
|
|
<AppFooter />
|
|
</template>
|
|
|
|
<style>
|
|
.app__main {
|
|
min-height: calc(100vh - 10rem);
|
|
}
|
|
</style>
|