knowyt/client/layouts/default.vue

20 lines
261 B
Vue
Raw Normal View History

2021-07-30 15:03:31 +00:00
<template>
<div class="layout-default">
<Nuxt />
</div>
</template>
<style lang="scss">
html, body {
margin: 0;
padding: 0;
2021-07-30 15:24:44 +00:00
width: 100%;
height: 100%;
2021-07-30 15:03:31 +00:00
}
body {
background-color: #402080;
color: #ffff80;
font-family: monospace;
}
</style>