refactor: remove default.vue layout and move contents back to app.vue

This commit is contained in:
SauceyRed 2025-05-01 22:34:22 +02:00
parent 8b719a9a63
commit 67f98735ee
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462
2 changed files with 17 additions and 20 deletions

18
app.vue
View file

@ -1,3 +1,19 @@
<template>
<NuxtLayout />
<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>

View file

@ -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>