mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
23 lines
510 B
TypeScript
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',
|
|
},
|
|
}));
|