Nuxt Content 3 migration #12
@ -1 +0,0 @@
|
|||||||
<template></template>
|
|
@ -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>
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user