mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()((theme) => ({
|
|
container: {
|
|
boxShadow: 'none',
|
|
minHeight: '100%',
|
|
position: 'relative',
|
|
[theme.breakpoints.down('md')]: {
|
|
paddingBottom: theme.spacing(8),
|
|
width: 'inherit',
|
|
},
|
|
},
|
|
}));
|