2022-05-02 15:52:41 +02:00
|
|
|
import { makeStyles } from 'tss-react/mui';
|
2021-03-30 15:14:02 +02:00
|
|
|
|
2022-05-02 15:52:41 +02:00
|
|
|
export const useStyles = makeStyles()(theme => ({
|
2022-05-09 14:38:12 +02:00
|
|
|
container: {
|
|
|
|
borderRadius: theme.shape.borderRadiusLarge,
|
|
|
|
boxShadow: 'none',
|
|
|
|
},
|
2021-03-30 15:14:02 +02:00
|
|
|
headerContainer: {
|
2022-05-09 12:01:12 +02:00
|
|
|
padding: theme.spacing(2, 4),
|
2022-05-09 14:38:12 +02:00
|
|
|
borderBottomStyle: 'solid',
|
|
|
|
borderBottomWidth: 1,
|
|
|
|
borderBottomColor: theme.palette.divider,
|
2022-05-02 15:52:41 +02:00
|
|
|
[theme.breakpoints.down('md')]: {
|
2021-03-30 15:14:02 +02:00
|
|
|
padding: '1.5rem 1rem',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
bodyContainer: {
|
2022-05-18 11:56:55 +02:00
|
|
|
padding: theme.spacing(4),
|
2022-05-02 15:52:41 +02:00
|
|
|
[theme.breakpoints.down('md')]: {
|
2022-05-18 11:56:55 +02:00
|
|
|
padding: theme.spacing(2),
|
2021-03-30 15:14:02 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
paddingDisabled: {
|
|
|
|
padding: '0',
|
|
|
|
},
|
|
|
|
borderDisabled: {
|
|
|
|
border: 'none',
|
|
|
|
},
|
|
|
|
}));
|