fix(ui): improve tab badge styling (#16507)

This commit is contained in:
Mihaela Dumitru
2025-10-06 13:40:41 +03:00
parent 529d67d2bb
commit 25ec00f216

View File

@@ -70,12 +70,17 @@ const useStyles = makeStyles()(theme => {
},
badge: {
...withPixelLineHeight(theme.typography.labelBold),
color: theme.palette.text04,
padding: `0 ${theme.spacing(1)}`,
borderRadius: '100%',
...theme.typography.labelBold,
alignItems: 'center',
backgroundColor: theme.palette.warning01,
marginLeft: theme.spacing(2)
borderRadius: theme.spacing(2),
color: theme.palette.text04,
display: 'inline-flex',
height: theme.spacing(3),
justifyContent: 'center',
marginLeft: theme.spacing(2),
minWidth: theme.spacing(2),
padding: `0 ${theme.spacing(1)}`
},
icon: {