mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
9ac962da45
* feat: new contexts table * improve context list actions * refactor: disabled icon colors * fix: update snapshots * fix: icons * fix: context fields typo * feat: new project access table * fix: header cell styles
28 lines
613 B
TypeScript
28 lines
613 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
pageContent: {
|
|
minHeight: '200px',
|
|
},
|
|
divider: {
|
|
height: '1px',
|
|
position: 'relative',
|
|
left: 0,
|
|
right: 0,
|
|
backgroundColor: theme.palette.divider,
|
|
margin: theme.spacing(4, -4, 3),
|
|
},
|
|
inputLabel: { backgroundColor: '#fff' },
|
|
roleName: {
|
|
fontWeight: 'bold',
|
|
padding: '5px 0px',
|
|
},
|
|
menuItem: {
|
|
width: '340px',
|
|
whiteSpace: 'normal',
|
|
},
|
|
projectRoleSelect: {
|
|
minWidth: '150px',
|
|
},
|
|
}));
|