From 66fbe9f670474cbb5ea5bbb9486c9fc3b2245a38 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 17 Nov 2023 07:26:22 -0800 Subject: [PATCH] Fix: Disable override white bkgd with card blur (#2336) --- src/styles/theme.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/styles/theme.css b/src/styles/theme.css index fbc5c2278..32a5fc996 100644 --- a/src/styles/theme.css +++ b/src/styles/theme.css @@ -14,13 +14,13 @@ --color-logo-stop: 128 128 128 / 40%; } -.theme-white .bg-theme-100\/20, -.theme-white .dark\:bg-white\/5 { +.theme-white .bg-theme-100\/20:not([class^="backdrop-blur"]), +.theme-white .dark\:bg-white\/5:not([class^="backdrop-blur"]) { background-color: rgb(245, 245, 245); } -.theme-white .bg-theme-100\/20:hover, -.theme-white .dark\:bg-white\/5:hover { +.theme-white .bg-theme-100\/20:hover:not([class^="backdrop-blur"]), +.theme-white .dark\:bg-white\/5:hover:not([class^="backdrop-blur"]) { background-color: rgb(250, 250, 250); }