From de2b592fae8aab8136304df175e1e91ffcab3a14 Mon Sep 17 00:00:00 2001 From: Emilia Date: Mon, 5 Jun 2023 16:53:58 -0400 Subject: [PATCH] Disable scrollbar on viewport --- assets/scss/default_theme/components/_main_window.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/scss/default_theme/components/_main_window.scss b/assets/scss/default_theme/components/_main_window.scss index 4c33f6f..ec9584c 100644 --- a/assets/scss/default_theme/components/_main_window.scss +++ b/assets/scss/default_theme/components/_main_window.scss @@ -1,3 +1,8 @@ +body { + overflow: hidden; // Disable scrolling + height: 100%; +} + div.main_container { height: 97vh; width: 98vw;