diff --git a/webapp/src/App.css b/webapp/src/App.css index a27ecce..98ad676 100644 --- a/webapp/src/App.css +++ b/webapp/src/App.css @@ -4,6 +4,7 @@ margin: 0px; border: none; } -html, body { +html, +body { overscroll-behavior: none; -} \ No newline at end of file +} diff --git a/webapp/src/App.tsx b/webapp/src/App.tsx index 4782a9a..7152687 100644 --- a/webapp/src/App.tsx +++ b/webapp/src/App.tsx @@ -20,7 +20,7 @@ import { IronCalcIcon } from "./icons"; function App() { const [model, setModel] = useState(null); const [workbookState, setWorkbookState] = useState( - null + null, ); useEffect(() => { @@ -54,7 +54,7 @@ function App() { if (!model || !workbookState) { return ( - +
Loading IronCalc
); diff --git a/webapp/src/components/worksheet.tsx b/webapp/src/components/worksheet.tsx index e6c0589..13ca38c 100644 --- a/webapp/src/components/worksheet.tsx +++ b/webapp/src/components/worksheet.tsx @@ -436,7 +436,7 @@ const Wrapper = styled("div")({ left: 0, right: 0, bottom: NAVIGATION_HEIGH + 1, - overscrollBehavior: "none" + overscrollBehavior: "none", }); const SheetCanvas = styled("canvas")`