Skip to content

Commit

Permalink
fix: attempt to fix color bug for mobile device with hover feature
Browse files Browse the repository at this point in the history
  • Loading branch information
GresilleSiffle committed Nov 28, 2024
1 parent 82d5c2f commit 33c2d8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const ScoreButton = ({
onClick,
}: ScoreButtonProps) => {
const theme = useTheme();
const hover = useMediaQuery('(hover: hover)');
const hover = useMediaQuery('(pointer:fine) and (hover:hover)');

return (
<IconButton
Expand Down

0 comments on commit 33c2d8f

Please sign in to comment.