mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
* fix: misc ui fixes post tables upgrade * fix: update snaps, small cleanup * refactor: ReportCard to styled, misc improvements * cleanup remaining styles file * rename `Feature Toggle Name` to just `name` * refactor: address PR comments
20 lines
470 B
TypeScript
20 lines
470 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
cell: {
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
paddingRight: theme.spacing(2),
|
|
},
|
|
menuContainer: {
|
|
borderRadius: theme.shape.borderRadiusLarge,
|
|
padding: theme.spacing(1, 1.5),
|
|
},
|
|
item: {
|
|
borderRadius: theme.shape.borderRadius,
|
|
},
|
|
text: {
|
|
fontSize: theme.fontSizes.smallBody,
|
|
},
|
|
}));
|