From ffb66d039ff2b29d2cb899d29a2799e1cf69c015 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 14 Nov 2023 11:11:01 -0500 Subject: [PATCH] Hide horizontal scrollbar in upload dialog re: #1219 re: https://github.com/openstreetmap/iD/pull/9911 --- 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 9401d129d3..51b394ffa9 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -845,7 +845,8 @@ a.hide-toggle { .sidebar-component .body { width: 100%; height: 100%; - overflow: auto; + overflow-y: auto; + overflow-x: hidden; position: relative; }