Merge branch 'dev_environment' of gitlab.com:brandx/bxt-app into dev_environment

This commit is contained in:
csawatzky 2025-04-08 14:39:37 -06:00
commit 3475b0ff03
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)",
}
}
})},