20 lines
254 B
Vue
20 lines
254 B
Vue
|
<template>
|
||
|
<NuxtLayout>
|
||
|
<NuxtPage />
|
||
|
</NuxtLayout>
|
||
|
</template>
|
||
|
<style lang="scss">
|
||
|
html,
|
||
|
body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: sans-serif;
|
||
|
color: $primary-text;
|
||
|
}
|
||
|
</style>
|