refactor: remove default.vue layout and move contents back to app.vue
This commit is contained in:
parent
8b719a9a63
commit
67f98735ee
2 changed files with 17 additions and 20 deletions
18
app.vue
18
app.vue
|
@ -1,3 +1,19 @@
|
||||||
<template>
|
<template>
|
||||||
<NuxtLayout />
|
<NuxtPage />
|
||||||
</template>
|
</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>
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
<template>
|
|
||||||
<NuxtPage />
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<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;
|
|
||||||
}
|
|
||||||
</style>
|
|
Loading…
Add table
Add a link
Reference in a new issue