diff options
| author | Ben Sima <ben@bsima.me> | 2025-11-10 06:57:33 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bsima.me> | 2025-11-10 06:57:33 -0500 |
| commit | cdef6a6db16080392f76cf3f14f70a01ddabc68b (patch) | |
| tree | 737504112e18b3f1ae7d372c8abae74b35ca369a /Biz/PodcastItLater/Web.py | |
| parent | a106ab762b3c6d0ddfea061a3dab86571296f307 (diff) | |
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.
Diffstat (limited to 'Biz/PodcastItLater/Web.py')
| -rw-r--r-- | Biz/PodcastItLater/Web.py | 2 |
1 files changed, 1 insertions, 1 deletions
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"], ), |
