Skip to content

Commit

Permalink
fix: corregi otro error relacionado con el responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
MirandaAriano committed Dec 12, 2024
1 parent 73a8365 commit 7ff1624
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ function Estadisticas() {
};
}, [lastScrollY]);

const leftPosition = useBreakpointValue({
base: '10px',
sm: '10px',
md: '105px'
});

return (
<Box display="flex" position="relative">
{!isMobile ? (
Expand All @@ -40,7 +46,7 @@ function Estadisticas() {
<Box
position="fixed"
bottom="760px"
left="10px"
left={leftPosition}
zIndex="1000"
>
<IconButton
Expand Down

0 comments on commit 7ff1624

Please sign in to comment.