Skip to content

Commit

Permalink
DOP-4978: mobile search filters page in dark mode (#1218)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeigs committed Sep 4, 2024
1 parent d2b3674 commit b84dcab
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/SearchResults/MobileFilters.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const disableBodyScroll = css`
`;

const Container = styled('div')`
background-color: ${palette.white};
background-color: var(--background-color-primary);
position: fixed;
left: 0;
top: ${({ topValue }) => topValue};
Expand All @@ -37,6 +37,10 @@ const BackButton = styled('div')`
cursor: pointer;
display: flex;
gap: 0 ${theme.size.small};
.dark-theme & {
color: ${palette.gray.light1};
}
`;

const Label = styled('div')`
Expand Down

0 comments on commit b84dcab

Please sign in to comment.