2024-01-02 23:32:49 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) Contributors to the Suwayomi project
|
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
|
|
|
|
|
2024-04-14 15:50:12 +02:00
|
|
|
import { styled } from '@mui/material/styles';
|
2024-08-30 21:54:11 +02:00
|
|
|
import Typography, { TypographyProps } from '@mui/material/Typography';
|
2024-01-02 23:32:49 +01:00
|
|
|
|
2024-08-30 21:54:11 +02:00
|
|
|
export const StyledGroupHeader = styled(Typography, { shouldForwardProp: (prop) => prop !== 'isFirstItem' })<
|
|
|
|
|
{
|
|
|
|
|
isFirstItem: boolean;
|
|
|
|
|
} & TypographyProps
|
|
|
|
|
>(({ theme, isFirstItem }) => ({
|
|
|
|
|
paddingLeft: theme.spacing(3),
|
2024-01-02 23:32:49 +01:00
|
|
|
// 16px - 10px (bottom padding of the group items)
|
2024-08-30 21:54:11 +02:00
|
|
|
paddingTop: theme.spacing(0.75),
|
|
|
|
|
paddingBottom: theme.spacing(2),
|
|
|
|
|
fontWeight: 'bold',
|
2024-01-02 23:32:49 +01:00
|
|
|
backgroundColor: theme.palette.background.default,
|
|
|
|
|
[theme.breakpoints.down('sm')]: {
|
|
|
|
|
// 16px - 8px (margin of header)
|
2024-08-30 21:54:11 +02:00
|
|
|
paddingTop: isFirstItem ? theme.spacing(1) : theme.spacing(0.75),
|
2024-01-02 23:32:49 +01:00
|
|
|
},
|
|
|
|
|
}));
|