From a231d7be6456bb00f9073157e9e86c7fbc928a5c Mon Sep 17 00:00:00 2001 From: Brandon Wees Date: Tue, 27 May 2025 14:42:22 -0500 Subject: [PATCH] chore: allow overriding dark mode to light mode with the .light class (#18687) * allow overriding dark mode to light mode with the .light class * light and dark are in the same block, dont use .light here --- web/src/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app.css b/web/src/app.css index 3da1f70b87..b45926c0c4 100644 --- a/web/src/app.css +++ b/web/src/app.css @@ -34,7 +34,7 @@ grid-template-columns: repeat(auto-fill, minmax(min(calc(var(--spacing) * --value(number)), 100%), 1fr)); } -@custom-variant dark (&:where(.dark, .dark *)); +@custom-variant dark (&:where(.dark, .dark *):not(.light)); @theme inline { --color-immich-primary: rgb(var(--immich-primary));