1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/strategies/StrategiesList/StrategiesList.styles.ts
Youssef Khedher 092755f7c0 fix: remove link color in strategies list (#773)
Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
2022-03-09 12:52:15 +01:00

15 lines
336 B
TypeScript

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