From 694ae62c551749edb0006157983bb13408fedfa9 Mon Sep 17 00:00:00 2001 From: Ian Roddis Date: Thu, 24 Feb 2022 11:51:28 -0400 Subject: [PATCH] CSS override to make accent colour grey --- webui/index.html | 3 --- webui/public/daggyd.css | 4 ++++ webui/src/App.vue | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/webui/index.html b/webui/index.html index 3d19025..3c7c7c2 100644 --- a/webui/index.html +++ b/webui/index.html @@ -5,13 +5,10 @@ Daggy - - -
diff --git a/webui/public/daggyd.css b/webui/public/daggyd.css index 10f8fa0..704aa04 100644 --- a/webui/public/daggyd.css +++ b/webui/public/daggyd.css @@ -1,3 +1,7 @@ +:root { + --accent-bg: #F3F3F3; +} + body { max-width: 100%; padding: 0px; diff --git a/webui/src/App.vue b/webui/src/App.vue index 2748c8a..07d32e5 100644 --- a/webui/src/App.vue +++ b/webui/src/App.vue @@ -5,8 +5,8 @@ import GlobalSettings from './components/GlobalSettings.vue' export default { data() { return { - refreshSeconds: 15, // How often to refresh - daggydURL: window.location.origin, + refreshSeconds: 15, // How often to refresh + daggydURL: window.location.origin, } },