import { makeStyles } from 'tss-react/mui'; export const useStyles = makeStyles()(theme => ({ containerStyles: { display: 'flex', [theme.breakpoints.down('md')]: { flexDirection: 'column', }, }, projectToggles: { width: '100%', minWidth: 0, }, header: { backgroundColor: theme.palette.background.paper, borderRadius: theme.shape.borderRadiusLarge, marginBottom: '1rem', }, innerContainer: { padding: '1.25rem 2rem', display: 'flex', flexDirection: 'column', alignItems: 'start', }, separator: { width: '100%', backgroundColor: theme.palette.grey[200], height: '1px', }, tabContainer: { padding: '0 2rem', }, tabButton: { textTransform: 'none', fontSize: '1rem', flexGrow: 1, flexBasis: 0, [theme.breakpoints.down('md')]: { paddingLeft: theme.spacing(1), paddingRight: theme.spacing(1), }, [theme.breakpoints.up('md')]: { minWidth: 160, }, }, title: { margin: 0, width: '100%', fontSize: theme.fontSizes.mainHeader, fontWeight: 'bold', display: 'flex', justifyContent: 'space-between', alignItems: 'center', gap: '1rem', }, titleText: { overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap', }, }));