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

22 lines
253 B
Vue
Raw Normal View History

2016-12-24 00:55:46 +00:00
<template>
<div class="dark">
<nuxt/>
</div>
</template>
<style>
.dark {
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
background: black;
color: white;
padding: 10px;
}
.dark a {
color: white;
}
</style>