From 2acc1b4f4c1ecff9995938d556dc05642aafadde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Tue, 20 Jan 2026 17:28:58 +0100 Subject: [PATCH] Fix problem with CSS variable if we remove the notice --- docs/.vuepress/components/DonationBar.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/.vuepress/components/DonationBar.vue b/docs/.vuepress/components/DonationBar.vue index af4be5f..75df224 100644 --- a/docs/.vuepress/components/DonationBar.vue +++ b/docs/.vuepress/components/DonationBar.vue @@ -130,7 +130,7 @@ const timeFrameStr = computed(() => { .donation-bar { width: 100%; overflow: hidden; - border: 1px solid var(--notice-c-accent-bg); + border: 1px solid var(--vp-c-accent-bg); border-radius: 10px; margin: 20px 0 20px 0; } @@ -138,7 +138,7 @@ const timeFrameStr = computed(() => { .donation-bar-value { border-radius: 10px 0 0 10px; color: #000; - background-color: var(--notice-c-accent-bg); + background-color: var(--vp-c-accent-bg); font-size: 2em; text-align: right; padding-right: 10px;