32 lines
450 B
Vue
32 lines
450 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<style lang="css">
|
|
:root {
|
|
--primary-color: #fff;
|
|
--secondary-color: #000;
|
|
}
|
|
|
|
html, body, p, a, button, address, h2 {
|
|
font-family: 'Abbiocco Beta', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.arrow-icon {
|
|
width: 12px;
|
|
}
|
|
</style> |