mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
24 lines
583 B
JavaScript
24 lines
583 B
JavaScript
|
import { makeStyles } from '@material-ui/styles';
|
||
|
|
||
|
export const useStyles = makeStyles(theme => ({
|
||
|
headerContainer: {
|
||
|
padding: theme.padding.pageContent.header,
|
||
|
borderBottom: theme.borders.default,
|
||
|
[theme.breakpoints.down('sm')]: {
|
||
|
padding: '1.5rem 1rem',
|
||
|
},
|
||
|
},
|
||
|
bodyContainer: {
|
||
|
padding: theme.padding.pageContent.body,
|
||
|
[theme.breakpoints.down('sm')]: {
|
||
|
padding: '1rem',
|
||
|
},
|
||
|
},
|
||
|
paddingDisabled: {
|
||
|
padding: '0',
|
||
|
},
|
||
|
borderDisabled: {
|
||
|
border: 'none',
|
||
|
},
|
||
|
}));
|