From 16ba1557967ba2d08b85ac4fef16089c340fc58c Mon Sep 17 00:00:00 2001 From: Darshan Date: Mon, 3 Feb 2025 13:49:30 +0530 Subject: [PATCH] add: comment info. explaining the `!important`. --- src/lib/components/support.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/components/support.svelte b/src/lib/components/support.svelte index d112e5214..721cabce2 100644 --- a/src/lib/components/support.svelte +++ b/src/lib/components/support.svelte @@ -175,11 +175,13 @@ } :global(.theme-dark .support-option-card) { + /* override required due to the card's background color */ background: var(--color-bgColor-neutral-default, #19191c) !important; } :global(.theme-light .support-option-card) { border: 1px solid var(--color-border-neutral, #ededf0); + /* override required due to the card's background color */ background: var(--color-bgColor-neutral-default, #fafafb) !important; }