From 5889b8976c73a53b358e95aa3b492244e310cb88 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Fri, 6 Jan 2023 23:34:31 -0800 Subject: [PATCH] Force header bg color in detail lists --- .../features/albums/components/album-detail-content.tsx | 2 +- .../features/playlists/components/playlist-detail-content.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/features/albums/components/album-detail-content.tsx b/src/renderer/features/albums/components/album-detail-content.tsx index dbdd6b2a..b0278a1e 100644 --- a/src/renderer/features/albums/components/album-detail-content.tsx +++ b/src/renderer/features/albums/components/album-detail-content.tsx @@ -38,7 +38,7 @@ const ContentContainer = styled.div` overflow: hidden; .ag-theme-alpine-dark { - --ag-header-background-color: rgba(0, 0, 0, 0%); + --ag-header-background-color: rgba(0, 0, 0, 0%) !important; } `; diff --git a/src/renderer/features/playlists/components/playlist-detail-content.tsx b/src/renderer/features/playlists/components/playlist-detail-content.tsx index a3fc51bb..18c42d2a 100644 --- a/src/renderer/features/playlists/components/playlist-detail-content.tsx +++ b/src/renderer/features/playlists/components/playlist-detail-content.tsx @@ -50,7 +50,7 @@ const ContentContainer = styled.div` overflow: hidden; .ag-theme-alpine-dark { - --ag-header-background-color: rgba(0, 0, 0, 0%); + --ag-header-background-color: rgba(0, 0, 0, 0%) !important; } `;