2022-05-02 15:52:41 +02:00
|
|
|
import { makeStyles } from 'tss-react/mui';
|
2021-07-16 15:41:54 +02:00
|
|
|
|
2022-05-02 15:52:41 +02:00
|
|
|
export const useStyles = makeStyles()(theme => ({
|
2021-07-16 15:41:54 +02:00
|
|
|
containerStyles: {
|
|
|
|
marginTop: '1.5rem',
|
|
|
|
display: 'flex',
|
2022-05-02 15:52:41 +02:00
|
|
|
[theme.breakpoints.down('md')]: {
|
2021-07-16 15:41:54 +02:00
|
|
|
flexDirection: 'column',
|
|
|
|
},
|
|
|
|
},
|
2022-05-18 11:56:55 +02:00
|
|
|
projectToggles: {
|
|
|
|
width: '100%',
|
|
|
|
minWidth: 0,
|
|
|
|
},
|
2021-10-01 12:15:02 +02:00
|
|
|
header: {
|
|
|
|
backgroundColor: '#fff',
|
2022-05-09 12:01:12 +02:00
|
|
|
borderRadius: theme.shape.borderRadiusLarge,
|
2021-10-01 12:15:02 +02:00
|
|
|
marginBottom: '1rem',
|
|
|
|
},
|
2021-11-24 14:36:21 +01:00
|
|
|
innerContainer: {
|
|
|
|
padding: '1rem 2rem',
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
},
|
2021-10-01 12:15:02 +02:00
|
|
|
separator: {
|
|
|
|
width: '100%',
|
|
|
|
backgroundColor: theme.palette.grey[200],
|
|
|
|
height: '1px',
|
|
|
|
},
|
|
|
|
tabContainer: {
|
2022-05-12 15:34:04 +02:00
|
|
|
padding: '0 2rem',
|
2021-10-01 12:15:02 +02:00
|
|
|
},
|
|
|
|
tabButton: {
|
|
|
|
textTransform: 'none',
|
|
|
|
width: 'auto',
|
|
|
|
fontSize: '1rem',
|
2022-05-02 15:52:41 +02:00
|
|
|
[theme.breakpoints.up('md')]: {
|
|
|
|
minWidth: 160,
|
|
|
|
},
|
2021-10-01 12:15:02 +02:00
|
|
|
},
|
2022-02-15 10:57:57 +01:00
|
|
|
title: {
|
2022-05-18 11:56:55 +02:00
|
|
|
margin: 0,
|
|
|
|
width: '100%',
|
2022-02-15 10:57:57 +01:00
|
|
|
fontSize: theme.fontSizes.mainHeader,
|
|
|
|
fontWeight: 'bold',
|
|
|
|
marginBottom: '0.5rem',
|
2022-05-18 11:56:55 +02:00
|
|
|
display: 'flex',
|
|
|
|
justifyContent: 'space-between',
|
2022-02-15 10:57:57 +01:00
|
|
|
alignItems: 'center',
|
2022-05-18 11:56:55 +02:00
|
|
|
gap: '1rem',
|
2022-02-15 10:57:57 +01:00
|
|
|
},
|
|
|
|
titleText: {
|
|
|
|
overflow: 'hidden',
|
|
|
|
textOverflow: 'ellipsis',
|
|
|
|
whiteSpace: 'nowrap',
|
|
|
|
},
|
2021-07-16 15:41:54 +02:00
|
|
|
}));
|