FIX[App]: Over scroll issues

This commit is contained in:
Nicolás Hatcher
2024-10-25 17:53:50 +02:00
committed by Nicolás Hatcher Andrés
parent 7ffbfac432
commit dae37f14ba
2 changed files with 4 additions and 0 deletions

View File

@@ -4,3 +4,6 @@
margin: 0px; margin: 0px;
border: none; border: none;
} }
html, body {
overscroll-behavior: none;
}

View File

@@ -436,6 +436,7 @@ const Wrapper = styled("div")({
left: 0, left: 0,
right: 0, right: 0,
bottom: NAVIGATION_HEIGH + 1, bottom: NAVIGATION_HEIGH + 1,
overscrollBehavior: "none"
}); });
const SheetCanvas = styled("canvas")` const SheetCanvas = styled("canvas")`