From e5efddb21610f6917c46107d401fda67b1f1b88e Mon Sep 17 00:00:00 2001 From: Dimitar <19364673+Dimitar5555@users.noreply.github.com> Date: Wed, 8 Nov 2023 16:17:15 +0200 Subject: [PATCH] Hide horizontal scrollbar in upload dialog (#9911) Resolves #9901 --- css/80_app.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/css/80_app.css b/css/80_app.css index ca774fc5f..12ec777cd 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -844,7 +844,8 @@ a.hide-toggle { .sidebar-component .body { width: 100%; height: 100%; - overflow: auto; + overflow-y: auto; + overflow-x: hidden; position: relative; }