remove redundant things

This commit is contained in:
eggy 2022-07-22 15:36:37 -04:00
parent 92d0d70760
commit 9105010387
3 changed files with 13 additions and 5 deletions

View File

@ -1 +0,0 @@
<template></template>

View File

@ -1,14 +1,11 @@
<script setup lang="ts"> <script setup lang="ts">
import Base from "./base.vue";
import Navbar from "../components/Navbar.vue"; import Navbar from "../components/Navbar.vue";
</script> </script>
<template> <template>
<div class="flex flex-col items-center w-full h-full"> <div class="flex flex-col items-center w-full h-full">
<Navbar /> <Navbar />
<Base>
<slot /> <slot />
</Base>
</div> </div>
</template> </template>
@ -38,4 +35,9 @@ html::before {
html.dark::before { html.dark::before {
transform: translateX(0); transform: translateX(0);
} }
.dark-mode body {
background-color: #091a28;
color: #ebf4f1;
}
</style> </style>

View File

@ -3,3 +3,10 @@
<template #not-found> Document not found </template> <template #not-found> Document not found </template>
</ContentDoc> </ContentDoc>
</template> </template>
<style>
article {
width: 90%;
height: 100%;
}
</style>