1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-03 01:18:43 +02:00
unleash.unleash/frontend/src/component/common/PageContent/PageContent.styles.ts

21 lines
453 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),
},
overflowX: 'auto',
},
paddingDisabled: {
padding: '0',
},
borderDisabled: {
border: 'none',
},
}));