fixed datadog logs formatting

This commit is contained in:
Carter 2025-04-23 12:14:09 -06:00
parent eb7efada69
commit 9cc0f78636
5 changed files with 18 additions and 18 deletions

View file

@ -89,19 +89,22 @@ const useStyles = makeStyles((theme: Theme) => ({
paddingLeft: theme.spacing(3),
paddingRight: theme.spacing(3)
},
"&:hover": {
background: theme.palette.mode === "light" ? darken(theme.palette.background.default, 0.1) : lighten(theme.palette.background.default, 0.1)
}
},
activeItem:
theme.palette.mode === "light"
? {
background: darken(theme.palette.background.default, 0.25),
"&:hover": {
background: darken(theme.palette.background.default, 0.25)
background: darken(theme.palette.background.default, 0.15)
}
}
: {
background: lighten(theme.palette.background.default, 0.25),
"&:hover": {
background: lighten(theme.palette.background.default, 0.25)
background: lighten(theme.palette.background.default, 0.15)
}
}
}))