1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00
unleash.unleash/frontend/src/component/user/PasswordAuth/PasswordAuth.styles.ts

20 lines
451 B
TypeScript
Raw Normal View History

import { makeStyles } from 'tss-react/mui';
export const useStyles = makeStyles()(theme => ({
loginContainer: {
minWidth: '350px',
[theme.breakpoints.down('sm')]: {
width: '100%',
minWidth: 'auto',
},
},
contentContainer: {
display: 'flex',
flexDirection: 'column',
},
apiError: {
color: theme.palette.error.main,
marginBottom: '0.5rem',
},
}));