27 lines
455 B
Vue
27 lines
455 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<style lang="css">
|
|
:root {
|
|
--primary-color: #fff;
|
|
--secondary-color: #000;
|
|
|
|
--breakpoint-sm: 576px;
|
|
--breakpoint-md: 768px;
|
|
--breakpoint-lg: 992px;
|
|
--breakpoint-xl: 1200px;
|
|
--breakpoint-2xl: 1400px;
|
|
}
|
|
|
|
html, body, p, a {
|
|
font-family: 'Abbiocco Beta', system-ui, -apple-system, BlinkMacSystemFont,
|
|
'Segoe UI', sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
</style> |