aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-04-13 23:15:46 -0500
committerFurkan Sahin <furkan-dev@proton.me>2021-04-13 23:15:46 -0500
commit72e980b857ffac4c362d3d4b6689d251fac6a750 (patch)
treef347c443c1e8efe6d244af7e06e11aececa5c00b /src/App.vue
parent569488c24ac0ee5c4cca9adfb0dc3f3aa9e7eca4 (diff)
parent5433214aa9b2cd3dd3445f9f2db297d4a6f2e670 (diff)
Merge pull request #2 from cobraguy/styling
Add styling and dark mode
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue
index 34945a9..5a1f608 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -3,16 +3,28 @@
</template>
<style>
+*, *:before, *:after {
+ box-sizing: inherit;
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+}
+
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>