From bbaf30512977668381cc3bcfc9bb2dff085aa52d Mon Sep 17 00:00:00 2001 From: jeffvli Date: Wed, 19 Nov 2025 19:33:43 -0800 Subject: [PATCH] fix title color on expanded album list --- .../albums/components/expanded-album-list-item.module.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/renderer/features/albums/components/expanded-album-list-item.module.css b/src/renderer/features/albums/components/expanded-album-list-item.module.css index 5b3636f24..6ef8f51c7 100644 --- a/src/renderer/features/albums/components/expanded-album-list-item.module.css +++ b/src/renderer/features/albums/components/expanded-album-list-item.module.css @@ -74,12 +74,20 @@ -webkit-box-orient: vertical; } +.item-title.dark { + color: white !important; +} + .item-subtitle { z-index: 10; color: black; white-space: nowrap; } +.item-subtitle.dark { + color: white !important; +} + .dark { color: white; }