Some general improvements.

This commit is contained in:
FireMasterK
2021-12-27 14:46:36 +00:00
parent b6d5fabeca
commit ea7669c863
6 changed files with 48 additions and 23 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="w-full min-h-screen h-full" :class="{ dark: darkMode, reset: !darkMode }">
<div class="w-full min-h-screen h-full p-5 reset" :class="{ dark: darkMode }">
<Navigation />
<router-view v-slot="{ Component }">
<keep-alive :max="5">
@@ -110,6 +110,7 @@ b {
* {
scrollbar-color: #15191a #444a4e;
@apply font-sans;
}
.video-grid {
@@ -124,6 +125,10 @@ b {
@apply text-black bg-white;
}
.auto {
@apply dark:(text-white bg-dark-900);
}
.dark {
@apply text-white bg-dark-900;
}