19 lines
265 B
Vue
19 lines
265 B
Vue
<template>
|
|
<NuxtPage />
|
|
</template>
|
|
|
|
<style>
|
|
html,
|
|
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
box-sizing: border-box;
|
|
color: rgb(190, 190, 190);
|
|
background-color: rgb(30, 30, 30);
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
color: aquamarine;
|
|
}
|
|
</style>
|