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

30 lines
737 B
TypeScript
Raw Normal View History

import { makeStyles } from 'tss-react/mui';
export const useStyles = makeStyles()(theme => ({
container: {
borderRadius: theme.shape.borderRadiusLarge,
boxShadow: 'none',
},
headerContainer: {
padding: theme.spacing(2, 4),
borderBottomStyle: 'solid',
borderBottomWidth: 1,
borderBottomColor: theme.palette.divider,
[theme.breakpoints.down('md')]: {
padding: '1.5rem 1rem',
},
},
bodyContainer: {
padding: theme.spacing(4),
[theme.breakpoints.down('md')]: {
padding: theme.spacing(2),
},
},
paddingDisabled: {
padding: '0',
},
borderDisabled: {
border: 'none',
},
}));