From dae37f14ba2dca838eea422e55d417c9413453c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Fri, 25 Oct 2024 17:53:50 +0200 Subject: [PATCH] FIX[App]: Over scroll issues --- webapp/src/App.css | 3 +++ webapp/src/components/worksheet.tsx | 1 + 2 files changed, 4 insertions(+) diff --git a/webapp/src/App.css b/webapp/src/App.css index 890aa46..a27ecce 100644 --- a/webapp/src/App.css +++ b/webapp/src/App.css @@ -4,3 +4,6 @@ margin: 0px; border: none; } +html, body { + overscroll-behavior: none; +} \ No newline at end of file diff --git a/webapp/src/components/worksheet.tsx b/webapp/src/components/worksheet.tsx index adde469..e6c0589 100644 --- a/webapp/src/components/worksheet.tsx +++ b/webapp/src/components/worksheet.tsx @@ -436,6 +436,7 @@ const Wrapper = styled("div")({ left: 0, right: 0, bottom: NAVIGATION_HEIGH + 1, + overscrollBehavior: "none" }); const SheetCanvas = styled("canvas")`