1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/feature/FeatureToggleListNew/FeatureToggleListNew.styles.ts

28 lines
535 B
TypeScript
Raw Normal View History

import { makeStyles } from '@material-ui/core/styles';
export const useStyles = makeStyles(theme => ({
tableRow: {
cursor: 'pointer',
},
tableCell: {
border: 'none',
padding: '0.25rem 0',
},
tableCellHeader: {
paddingBottom: '0.5rem',
},
tableCellName: {
width: '250px',
},
tableCellEnv: {
width: '20px',
},
tableCellType: {
display: 'flex',
alignItems: 'center',
},
icon: {
marginRight: '0.3rem',
},
}));