From 3cda552f13ef296bec07c2ed292a88e1fa42a1ad Mon Sep 17 00:00:00 2001 From: Aditya Date: Wed, 10 Dec 2025 22:20:27 +0530 Subject: [PATCH] fix: allow sidebar to scroll on small screen heights Fixes #1642 Changed overflow-y from 'hidden' to 'auto' on #sidebar element, allowing users to scroll when the viewport height is too small to display all sidebar content. --- app/static/css/sidebar.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/css/sidebar.css b/app/static/css/sidebar.css index 0eab0ef68..c994937f8 100644 --- a/app/static/css/sidebar.css +++ b/app/static/css/sidebar.css @@ -18,7 +18,7 @@ height: 100vh; max-height: 100vh; overflow-x: auto; - overflow-y: hidden; + overflow-y: auto; } .b-example-divider {