diff options
Diffstat (limited to 'modern/src/common/components/StatusCard.jsx')
-rw-r--r-- | modern/src/common/components/StatusCard.jsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modern/src/common/components/StatusCard.jsx b/modern/src/common/components/StatusCard.jsx index c8898b7c..38de944b 100644 --- a/modern/src/common/components/StatusCard.jsx +++ b/modern/src/common/components/StatusCard.jsx @@ -60,8 +60,8 @@ const useStyles = makeStyles((theme) => ({ maxHeight: theme.dimensions.cardContentMaxHeight, overflow: 'auto', }, - negative: { - color: theme.palette.colors.negative, + delete: { + color: theme.palette.error.main, }, icon: { width: '25px', @@ -254,7 +254,7 @@ const StatusCard = ({ deviceId, position, onClose, disableActions, desktopPaddin <IconButton onClick={() => setRemoving(true)} disabled={disableActions || deviceReadonly} - className={classes.negative} + className={classes.delete} > <DeleteIcon /> </IconButton> |