Update list group headers styling

This commit is contained in:
schroda
2024-08-30 21:54:11 +02:00
parent 86f4e895b1
commit 0c6c9e5ab4
4 changed files with 19 additions and 17 deletions

View File

@@ -7,20 +7,21 @@
*/
import { styled } from '@mui/material/styles';
import Typography from '@mui/material/Typography';
import Typography, { TypographyProps } from '@mui/material/Typography';
export const StyledGroupHeader = styled(Typography, { shouldForwardProp: (prop) => prop !== 'isFirstItem' })<{
isFirstItem: boolean;
}>(({ theme, isFirstItem }) => ({
paddingLeft: '24px',
export const StyledGroupHeader = styled(Typography, { shouldForwardProp: (prop) => prop !== 'isFirstItem' })<
{
isFirstItem: boolean;
} & TypographyProps
>(({ theme, isFirstItem }) => ({
paddingLeft: theme.spacing(3),
// 16px - 10px (bottom padding of the group items)
paddingTop: '6px',
paddingBottom: '16px',
fontWeight: 700,
textTransform: 'uppercase',
paddingTop: theme.spacing(0.75),
paddingBottom: theme.spacing(2),
fontWeight: 'bold',
backgroundColor: theme.palette.background.default,
[theme.breakpoints.down('sm')]: {
// 16px - 8px (margin of header)
paddingTop: isFirstItem ? '8px' : '6px',
paddingTop: isFirstItem ? theme.spacing(1) : theme.spacing(0.75),
},
}));

View File

@@ -285,7 +285,7 @@ export function Extensions({ tabsMenuHeight }: { tabsMenuHeight: number }) {
const [groupName] = filteredGroupedExtensions[index];
return (
<StyledGroupHeader key={groupName} variant="h4" isFirstItem={index === 0}>
<StyledGroupHeader key={groupName} variant="h5" component="h2" isFirstItem={index === 0}>
{translateExtensionLanguage(groupName)}
</StyledGroupHeader>
);

View File

@@ -140,11 +140,12 @@ export function Sources() {
<Fragment key={lang}>
<Typography
key={lang}
variant="h4"
style={{
paddingLeft: '24px',
paddingTop: '6px',
paddingBottom: '16px',
variant="h5"
component="h2"
sx={{
paddingLeft: 3,
paddingTop: 1,
paddingBottom: 2,
fontWeight: 'bold',
}}
>

View File

@@ -156,7 +156,7 @@ export const Updates: React.FC = () => {
endReached={loadMore}
groupCounts={groupCounts}
groupContent={(index) => (
<StyledGroupHeader variant="h5" isFirstItem={index === 0}>
<StyledGroupHeader variant="h5" component="h2" isFirstItem={index === 0}>
{groupedUpdates[index][0]}
</StyledGroupHeader>
)}