diff --git a/application/frontend/src/app.scss b/application/frontend/src/app.scss index 6208298a..4b0fb3c6 100644 --- a/application/frontend/src/app.scss +++ b/application/frontend/src/app.scss @@ -9,21 +9,27 @@ body { width: 100%; margin: 0; padding: 0; + overscroll-behavior-y: none; } html { text-size-adjust: 100%; + background-color: white; } body { - background-color: #010817; + background-color: white; + overflow: hidden; } #mount { - height: 100vh; - width: 100vw; + height: 100%; + width: 100%; + overflow-y: auto; + overflow-x: hidden; + overscroll-behavior-y: none; } .app { - height: 100%; + min-height: 100%; }