From 55aaed1b31203c04710c955c09616b29440d95e3 Mon Sep 17 00:00:00 2001 From: Simon L Date: Sat, 13 May 2023 09:08:21 +0200 Subject: [PATCH] Use the color-primary-element* variables Signed-off-by: Simon L --- src/components/Location.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Location.vue b/src/components/Location.vue index 8ca71c47..76886493 100644 --- a/src/components/Location.vue +++ b/src/components/Location.vue @@ -97,7 +97,7 @@ export default { const newElm = document.querySelector('.where-is-my-data #' + newCountry) if (newElm) { - newElm.style.fill = 'var(--color-primary)' + newElm.style.fill = 'var(--color-primary-element)' } } },