mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-15 01:16:22 +02:00
20 lines
434 B
JavaScript
20 lines
434 B
JavaScript
import { makeStyles } from '@material-ui/styles';
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
listItem: {
|
|
padding: '0',
|
|
['& a']: {
|
|
textDecoration: 'none',
|
|
color: 'inherit',
|
|
},
|
|
'&:hover': {
|
|
backgroundColor: theme.palette.grey[200],
|
|
}
|
|
},
|
|
deprecated: {
|
|
'& a': {
|
|
color: theme.palette.links.deprecated,
|
|
},
|
|
},
|
|
}));
|