mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
19 lines
423 B
JavaScript
19 lines
423 B
JavaScript
|
import { makeStyles } from '@material-ui/styles';
|
||
|
|
||
|
export const useStyles = makeStyles(theme => ({
|
||
|
loginContainer: {
|
||
|
minWidth: '350px',
|
||
|
[theme.breakpoints.down('xs')]: {
|
||
|
width: '100%',
|
||
|
minWidth: 'auto',
|
||
|
},
|
||
|
},
|
||
|
contentContainer: {
|
||
|
display: 'flex',
|
||
|
flexDirection: 'column',
|
||
|
},
|
||
|
apiError: {
|
||
|
color: theme.palette.error.main,
|
||
|
},
|
||
|
}));
|