1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-24 17:39:06 +00:00
Nuxt/examples/custom-layouts/layouts/dark.vue
2017-07-07 12:25:14 +02:00

25 lines
282 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>