From de40d019392aa7a7bd1f754ee859f4d7aa5db9e1 Mon Sep 17 00:00:00 2001 From: eggy Date: Wed, 10 Aug 2022 11:12:36 -0400 Subject: [PATCH] fix: dark mode statbox --- components/HomeStatBox.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/HomeStatBox.vue b/components/HomeStatBox.vue index 5a3aed2..8ec4726 100644 --- a/components/HomeStatBox.vue +++ b/components/HomeStatBox.vue @@ -66,7 +66,7 @@ const cssVars = { } html.dark .container { - border: 0.5rem solid v-bind(darkcolor); + border: 0.5rem solid var(--darkcolor); box-shadow: 0 0.1rem 0.5rem 0 black; } @@ -81,7 +81,7 @@ html.dark .container { } html.dark .title { - background: var(--dark-color); + background: var(--darkcolor); } @media screen and (max-width: 600px) {