2021-07-16 15:41:54 +02:00
|
|
|
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
|
|
containerStyles: {
|
|
|
|
marginTop: '1.5rem',
|
|
|
|
display: 'flex',
|
|
|
|
[theme.breakpoints.down('sm')]: {
|
|
|
|
flexDirection: 'column',
|
|
|
|
},
|
|
|
|
},
|
2021-10-01 12:15:02 +02:00
|
|
|
header: {
|
|
|
|
backgroundColor: '#fff',
|
|
|
|
borderRadius: '10px',
|
|
|
|
marginBottom: '1rem',
|
|
|
|
},
|
|
|
|
innerContainer: { padding: '2rem' },
|
|
|
|
separator: {
|
|
|
|
width: '100%',
|
|
|
|
backgroundColor: theme.palette.grey[200],
|
|
|
|
height: '1px',
|
|
|
|
},
|
|
|
|
tabContainer: {
|
|
|
|
padding: '1rem 2rem',
|
|
|
|
},
|
|
|
|
tabButton: {
|
|
|
|
textTransform: 'none',
|
|
|
|
width: 'auto',
|
|
|
|
fontSize: '1rem',
|
|
|
|
},
|
2021-07-16 15:41:54 +02:00
|
|
|
}));
|