public/layouts/default.vue
2022-07-22 15:32:00 -04:00

42 lines
659 B
Vue

<script setup lang="ts">
import Base from "./base.vue";
import Navbar from "../components/Navbar.vue";
</script>
<template>
<div class="flex flex-col items-center w-full h-full">
<Navbar />
<Base>
<slot />
</Base>
</div>
</template>
<style>
html {
background: white;
color: black;
transition: color 0.2s ease, background 0.2s ease;
}
html.dark {
background: #222;
color: white;
}
html::before {
content: "";
position: fixed;
height: 100%;
width: 100%;
background: #222;
transform: translateX(-100%);
transition: transform 0.2s ease;
z-index: 0;
}
html.dark::before {
transform: translateX(0);
}
</style>