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

13 lines
194 B
Vue

<template>
<div class="flex flex-col items-center w-full h-full">
<slot />
</div>
</template>
<style scoped>
.dark-mode body {
background-color: #091a28;
color: #ebf4f1;
}
</style>