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/styles.ts

24 lines
553 B
TypeScript
Raw Normal View History

import { makeStyles } from 'tss-react/mui';
export const useStyles = makeStyles()(theme => ({
headerContainer: {
padding: '1.8rem 2rem',
borderBottom: `1px solid ${theme.palette.grey[100]}`,
[theme.breakpoints.down('md')]: {
padding: '1.5rem 1rem',
},
},
bodyContainer: {
padding: '2rem',
[theme.breakpoints.down('md')]: {
padding: '1rem',
},
},
paddingDisabled: {
padding: '0',
},
borderDisabled: {
border: 'none',
},
}));