Skip to content

Commit e1aed56

Browse files
committed
Update
Signed-off-by: vr-varad <[email protected]>
1 parent fb87462 commit e1aed56

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/custom/CatalogFilterSection/CatalogFilterSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const CatalogFilterSidebar: React.FC<CatalogFilterSidebarProps> = ({
127127
<Box sx={{ overflowY: 'hidden', height: '90vh' }}>
128128
<FiltersDrawerHeader>
129129
<Typography
130-
variant="h4"
130+
variant="h6"
131131
sx={{ color: theme.palette.text.constant?.white }}
132132
component="div"
133133
>

src/custom/CatalogFilterSection/FilterSection.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,13 @@ const FilterSection: React.FC<FilterSectionProps> = ({
6262
backgroundColor: styleProps.sectionTitleBackgroundColor
6363
}}
6464
>
65-
<Typography variant="h6" fontWeight="bold" fontFamily={styleProps.fontFamily}>
65+
<Typography
66+
sx={{
67+
fontSize: '1rem'
68+
}}
69+
fontWeight="bold"
70+
fontFamily={styleProps.fontFamily}
71+
>
6672
{(sectionDisplayName || filterKey).toUpperCase()}
6773
</Typography>
6874
{openSections[filterKey] ? <ExpandLessIcon /> : <ExpandMoreIcon />}

0 commit comments

Comments
 (0)