From a12e14c2823751a065b08dca1dc808d5fa3e2e9f Mon Sep 17 00:00:00 2001 From: Keavon Chambers Date: Mon, 5 Jul 2021 00:38:18 -0700 Subject: [PATCH] Fix horizontal scrollbar due to status bar negative margin --- client/web/src/components/window/MainWindow.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/web/src/components/window/MainWindow.vue b/client/web/src/components/window/MainWindow.vue index 23a45d777..98829bfc0 100644 --- a/client/web/src/components/window/MainWindow.vue +++ b/client/web/src/components/window/MainWindow.vue @@ -29,6 +29,8 @@ .status-bar-row { flex: 0 0 auto; + // Prevents the creation of a scrollbar due to the child's negative margin + overflow: hidden; }