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

6
package-lock.json generated
View file

@ -13668,9 +13668,9 @@
}
},
"node_modules/vite": {
"version": "6.2.3",
"resolved": "https://registry.npmjs.org/vite/-/vite-6.2.3.tgz",
"integrity": "sha512-IzwM54g4y9JA/xAeBPNaDXiBF8Jsgl3VBQ2YQ/wOY6fyW3xMdSoltIV3Bo59DErdqdE6RxUfv8W69DvUorE4Eg==",
"version": "6.2.5",
"resolved": "https://registry.npmjs.org/vite/-/vite-6.2.5.tgz",
"integrity": "sha512-j023J/hCAa4pRIUH6J9HemwYfjB5llR2Ps0CWeikOtdR8+pAURAk0DoJC5/mm9kd+UgdnIy7d6HE4EAvlYhPhA==",
"dev": true,
"license": "MIT",
"dependencies": {

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)",
}
}
})},