From 5c28fcd1b7d7f6e109a9327672f460e22c874eab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 15 Apr 2022 14:25:30 +0200 Subject: [PATCH] Web: set colours on the html & body element Setting the CSS `color` and `background-color` properties on the top-level elements will make Firefox understand the dark theme, and colour the scroll bar appropriately. --- web/app/src/App.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/app/src/App.vue b/web/app/src/App.vue index 9433c09a..5c2e864d 100644 --- a/web/app/src/App.vue +++ b/web/app/src/App.vue @@ -137,14 +137,15 @@ export default { body { margin: 0; + + color: #EEEEEE; + background-color: #222222; } #app { font-family: 'Noto Sans', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; - color: #EEEEEE; - background-color: #222222; display: grid; width: 100%;