From cdef6a6db16080392f76cf3f14f70a01ddabc68b Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Mon, 10 Nov 2025 06:57:33 -0500 Subject: Remove bg-light from user info card for proper dark mode The bg-light class was forcing the 'Logged in as' card to stay light even in dark mode. Removing it allows Bootstrap's default card background to adapt to dark mode. --- Biz/PodcastItLater/Web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Biz') diff --git a/Biz/PodcastItLater/Web.py b/Biz/PodcastItLater/Web.py index 2ba5d37..b5d41dd 100644 --- a/Biz/PodcastItLater/Web.py +++ b/Biz/PodcastItLater/Web.py @@ -1092,7 +1092,7 @@ class HomePage(Component[AnyChildren, HomePageAttrs]): ), classes=["d-flex", "flex-wrap"], ), - classes=["card-body", "bg-light"], + classes=["card-body"], ), classes=["card", "mb-4"], ), -- cgit v1.2.3