Nuxt/examples/custom-layouts/layouts/dark.vue

25 lines
283 B
Vue

<template>
<div class="dark">
<nuxt />
</div>
</template>
<style>
body {
overflow: hidden;
}
.dark {
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
background: black;
color: white;
padding: 10px;
}
.dark a {
color: white;
}
</style>