From d4e91f2a1cda65f883722c6416bc182962d52868 Mon Sep 17 00:00:00 2001 From: wukko Date: Fri, 9 Aug 2024 11:48:04 +0600 Subject: [PATCH] web/DonateOptionsCard: fix button active color --- web/src/components/donate/DonateOptionsCard.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/src/components/donate/DonateOptionsCard.svelte b/web/src/components/donate/DonateOptionsCard.svelte index dee61f55..f9211bc8 100644 --- a/web/src/components/donate/DonateOptionsCard.svelte +++ b/web/src/components/donate/DonateOptionsCard.svelte @@ -181,6 +181,10 @@ box-shadow: none; } + :global(#donation-box button:active) { + background: rgba(255, 255, 255, 0.1); + } + @media (hover: hover) { :global(#donation-box button:hover) { background: rgba(255, 255, 255, 0.1);