mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
25 lines
282 B
Vue
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>
|