updated to node 23; fixed mobile device list miscoloration

This commit is contained in:
Carter 2025-04-08 13:46:57 -06:00
parent 975f3bba54
commit 318975b649
2 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ import { useMobile } from "hooks";
import classNames from "classnames";
const useStyles = makeStyles((theme: Theme) => {
// const isMobile = useMobile()
const isMobile = useMobile()
return ({
gutter: {
backgroundColor: darken(theme.palette.background.paper, 0.05),
@ -55,7 +55,7 @@ const useStyles = makeStyles((theme: Theme) => {
rowHover: {
cursor: "pointer",
"&:hover": {
backgroundColor: "rgba(150, 150, 150, 0.15)"
backgroundColor: !isMobile && "rgba(150, 150, 150, 0.15)",
}
}
})},