2022-05-02 15:52:41 +02:00
|
|
|
import { makeStyles } from 'tss-react/mui';
|
2021-04-19 10:55:15 +02:00
|
|
|
|
2022-05-02 15:52:41 +02:00
|
|
|
export const useStyles = makeStyles()(theme => ({
|
2021-05-21 14:01:28 +02:00
|
|
|
newUser: {
|
|
|
|
width: '350px',
|
2022-05-02 15:52:41 +02:00
|
|
|
[theme.breakpoints.down('sm')]: {
|
2021-05-21 14:01:28 +02:00
|
|
|
width: '100%',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
fontSize: theme.fontSizes.mainHeader,
|
|
|
|
marginBottom: '1.25rem',
|
2021-06-07 10:15:30 +02:00
|
|
|
textAlign: 'center',
|
2021-05-21 14:01:28 +02:00
|
|
|
},
|
|
|
|
inviteText: {
|
|
|
|
marginBottom: '1rem',
|
|
|
|
textAlign: 'center',
|
|
|
|
},
|
2021-04-19 10:55:15 +02:00
|
|
|
container: {
|
|
|
|
display: 'flex',
|
|
|
|
},
|
|
|
|
roleContainer: {
|
|
|
|
marginTop: '2rem',
|
|
|
|
},
|
|
|
|
innerContainer: {
|
|
|
|
width: '60%',
|
|
|
|
padding: '4rem 3rem',
|
|
|
|
},
|
|
|
|
buttonContainer: {
|
|
|
|
display: 'flex',
|
|
|
|
marginTop: '1rem',
|
|
|
|
},
|
|
|
|
primaryBtn: {
|
|
|
|
marginRight: '8px',
|
|
|
|
},
|
|
|
|
subtitle: {
|
2021-05-21 14:01:28 +02:00
|
|
|
margin: '0.5rem 0',
|
2021-04-19 10:55:15 +02:00
|
|
|
},
|
2021-05-18 12:59:48 +02:00
|
|
|
passwordHeader: {
|
|
|
|
marginTop: '2rem',
|
|
|
|
},
|
2021-04-19 10:55:15 +02:00
|
|
|
emailField: {
|
|
|
|
minWidth: '300px',
|
2021-05-21 14:01:28 +02:00
|
|
|
width: '100%',
|
2022-05-02 15:52:41 +02:00
|
|
|
[theme.breakpoints.down('sm')]: {
|
2021-04-23 15:21:24 +02:00
|
|
|
minWidth: '100%',
|
|
|
|
},
|
2021-04-19 10:55:15 +02:00
|
|
|
},
|
|
|
|
}));
|