mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-20 00:08:02 +01:00
27 lines
586 B
TypeScript
27 lines
586 B
TypeScript
|
import { makeStyles } from '@material-ui/core/styles';
|
||
|
|
||
|
export const useStyles = makeStyles(theme => ({
|
||
|
pageContent: {
|
||
|
minHeight: '200px',
|
||
|
},
|
||
|
divider: {
|
||
|
height: '1px',
|
||
|
width: '106.65%',
|
||
|
marginLeft: '-2rem',
|
||
|
backgroundColor: '#efefef',
|
||
|
marginTop: '2rem',
|
||
|
},
|
||
|
inputLabel: { backgroundColor: '#fff' },
|
||
|
roleName: {
|
||
|
fontWeight: 'bold',
|
||
|
padding: '5px 0px',
|
||
|
},
|
||
|
menuItem: {
|
||
|
width: '340px',
|
||
|
whiteSpace: 'normal',
|
||
|
},
|
||
|
projectRoleSelect: {
|
||
|
minWidth: '150px',
|
||
|
},
|
||
|
}));
|