diff --git a/src/custom/CatalogFilterSection/CatalogFilterSidebar.tsx b/src/custom/CatalogFilterSection/CatalogFilterSidebar.tsx index 1fd35bd5..965af08b 100644 --- a/src/custom/CatalogFilterSection/CatalogFilterSidebar.tsx +++ b/src/custom/CatalogFilterSection/CatalogFilterSidebar.tsx @@ -100,7 +100,10 @@ const CatalogFilterSidebar: React.FC = ({ - + Filters diff --git a/src/custom/CatalogFilterSection/style.tsx b/src/custom/CatalogFilterSection/style.tsx index 105a244c..32e74de6 100644 --- a/src/custom/CatalogFilterSection/style.tsx +++ b/src/custom/CatalogFilterSection/style.tsx @@ -37,7 +37,7 @@ export const FilterButton = styled(Button)(({ theme }) => ({ '&:hover': { backgroundColor: theme.palette.background.default }, - height: '3.5rem', + height: '3.75rem', ['@media (max-width:450px)']: { minWidth: '0px' } diff --git a/src/custom/StyledSearchBar/style.tsx b/src/custom/StyledSearchBar/style.tsx index f316bc65..9f702672 100644 --- a/src/custom/StyledSearchBar/style.tsx +++ b/src/custom/StyledSearchBar/style.tsx @@ -8,7 +8,8 @@ export const StyledSearchInput = styled(OutlinedInput)(({ style, theme }) => ({ paddingLeft: '0.25rem' }, display: 'flex', - backgroundColor: theme.palette.background.surfaces, + backgroundColor: + theme.palette.mode === 'light' ? theme.palette.common.white : theme.palette.background.surfaces, ...style }));