Skip to content

Commit a7c406e

Browse files
authored
Merge pull request #1141 from vr-varad/fix/filter_header
Fix: Themed Color for Universal Filter
2 parents 9b9b690 + 6acae80 commit a7c406e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/custom/UniversalFilter.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ export interface UniversalFilterProps {
3030
}
3131

3232
export const FilterHeader = styled('div')(({ theme }) => ({
33-
background: theme.palette.mode === 'light' ? lightModalGradient.header : darkModalGradient.header,
33+
background: theme.palette.surface.tint,
34+
color: theme.palette.common.white,
3435
padding: '0.75rem 1rem',
3536
margin: '-1rem -1rem 1rem -1rem',
3637
display: 'flex',

0 commit comments

Comments
 (0)