Skip to content

Commit ec48710

Browse files
Merge branch 'master' into feat/add-missing-mui-icons
2 parents 38be150 + f002990 commit ec48710

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/custom/CatalogFilterSection/CatalogFilterSidebar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ const CatalogFilterSidebar: React.FC<CatalogFilterSidebarProps> = ({
105105
</FiltersCardDiv>
106106
<FilterDrawerDiv>
107107
<CustomTooltip title="Filters" placement="bottom">
108-
<FilterButton variant="contained" onClick={handleDrawerOpen}>
108+
<FilterButton variant="contained" size="large" onClick={handleDrawerOpen}>
109109
<FilterAltIcon
110-
style={{ height: '28px', width: '28px' }}
110+
style={{ height: '25px', width: '25px' }}
111111
fill={theme.palette.text.default}
112112
/>
113113
</FilterButton>

src/custom/CatalogFilterSection/style.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ export const FilterButton = styled(Button)(({ theme }) => ({
4040
'&:hover': {
4141
backgroundColor: theme.palette.background.default
4242
},
43-
height: '3.75rem',
4443
['@media (max-width:450px)']: {
4544
minWidth: '0px'
4645
}

src/custom/PerformersSection/PerformersToogleButton.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ const PerformersSectionButton: React.FC<PerformersSectionButtonProps> = ({ open,
2525
onClick={handleClick}
2626
size="large"
2727
style={{
28-
backgroundColor: open ? undefined : theme.palette.background.constant?.disabled
28+
backgroundColor: open ? undefined : theme.palette.background.constant?.disabled,
29+
whiteSpace: 'nowrap'
2930
}}
3031
>
3132
<TropyIcon style={{ height: '2rem', width: '2rem', marginRight: '10px' }} />

0 commit comments

Comments
 (0)