1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-23 00:22:19 +01:00

fix: status chip (#501)

This commit is contained in:
Fredrik Strand Oseberg 2021-11-12 12:02:47 +01:00 committed by GitHub
parent c0da8ed6bc
commit 3465f4c664
2 changed files with 5 additions and 4 deletions

View File

@ -2,7 +2,6 @@ import { makeStyles } from '@material-ui/core/styles';
export const useStyles = makeStyles(theme => ({
chip: {
margin: '0 8px',
background: 'transparent',
border: `1px solid ${theme.palette.primary.main}`,
color: theme.palette.primary.main,

View File

@ -6,7 +6,7 @@ export const useStyles = makeStyles(theme => ({
margin: '1rem 0',
'&:hover': {
backgroundColor: theme.palette.grey[200],
}
},
},
listItemMetric: {
width: '40px',
@ -28,8 +28,10 @@ export const useStyles = makeStyles(theme => ({
},
listItemStrategies: {
marginLeft: 'auto',
display: 'flex',
alignItems: 'center',
},
disabledLink:{
pointerEvents: 'none'
disabledLink: {
pointerEvents: 'none',
},
}));