aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue
index 34945a9..481fa7d 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -3,16 +3,27 @@
</template>
<style>
+*, *:before, *:after {
+ box-sizing: inherit;
+}
+
html {
box-sizing: border-box;
}
-*, *:before, *:after {
- box-sizing: inherit;
+html, body {
+ margin: 0;
+ padding: 0;
}
#app {
height: 100vh;
max-height: 100vh;
}
+
+@media (prefers-color-scheme: dark) {
+ body {
+ background-color: #121212;
+ }
+}
</style>