1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/component/common/PageContent/PageContent.styles.ts
2023-01-05 16:23:40 +02:00

23 lines
510 B
TypeScript

import { makeStyles } from 'tss-react/mui';
export const useStyles = makeStyles()(theme => ({
headerPadding: {
padding: theme.spacing(2, 4),
},
bodyContainer: {
padding: theme.spacing(4),
[theme.breakpoints.down('md')]: {
padding: theme.spacing(2),
},
[theme.breakpoints.down('sm')]: {
overflowX: 'auto',
},
},
paddingDisabled: {
padding: '0',
},
borderDisabled: {
border: 'none',
},
}));