knowyt/client/layouts/default.vue
2021-07-30 17:24:44 +02:00

20 lines
261 B
Vue

<template>
<div class="layout-default">
<Nuxt />
</div>
</template>
<style lang="scss">
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
background-color: #402080;
color: #ffff80;
font-family: monospace;
}
</style>