17 lines
286 B
Vue
17 lines
286 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<style lang="css">
|
|
:root {
|
|
--primary-color: #fff;
|
|
--secondary-color: #000;
|
|
}
|
|
|
|
html, body, p {
|
|
font-family: 'Abbiocco Beta', system-ui, -apple-system, BlinkMacSystemFont,
|
|
'Segoe UI', sans-serif;
|
|
}
|
|
</style> |