1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-23 20:07:40 +02:00
unleash.unleash/frontend/src/component/strategies/StrategiesList/StrategiesList.styles.ts

15 lines
327 B
TypeScript
Raw Normal View History

import { makeStyles } from 'tss-react/mui';
export const useStyles = makeStyles()(theme => ({
listItem: {
padding: '0',
['& a']: {
textDecoration: 'none',
color: 'inherit',
},
'&:hover': {
backgroundColor: theme.palette.grey[200],
},
},
}));