mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
|
import { makeStyles } from '@material-ui/core/styles';
|
||
|
|
||
|
export const useStyles = makeStyles(theme => ({
|
||
|
containerStyles: {
|
||
|
marginTop: '1.5rem',
|
||
|
display: 'flex',
|
||
|
[theme.breakpoints.down('sm')]: {
|
||
|
flexDirection: 'column',
|
||
|
},
|
||
|
},
|
||
|
}));
|