feat: add dark mode

This commit is contained in:
2022-07-21 22:03:35 -04:00
parent a4450071d2
commit 9c6b91c562
18 changed files with 394 additions and 36 deletions

21
layouts/base.vue Normal file
View File

@@ -0,0 +1,21 @@
<template>
<div class="container">
<slot />
</div>
</template>
<style scoped>
.container {
display: flex;
flex-direction: column;
margin-left: 10%;
margin-right: 10%;
height: 100%;
width: 100%;
}
.dark-mode body {
background-color: #091a28;
color: #ebf4f1;
}
</style>