From 63dc5c2bdb7e7be3c4e0ce2fe0d799c276e75dfc Mon Sep 17 00:00:00 2001 From: Will Miao <13051207myq@gmail.com> Date: Fri, 27 Jun 2025 11:44:43 +0800 Subject: [PATCH] fix: change overflow-y property to scroll for consistent vertical scrolling behavior --- static/css/layout.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/layout.css b/static/css/layout.css index 508f854a..879a3249 100644 --- a/static/css/layout.css +++ b/static/css/layout.css @@ -4,7 +4,7 @@ width: 100%; position: relative; overflow-x: hidden; /* Prevent horizontal scrolling */ - overflow-y: auto; /* Enable vertical scrolling */ + overflow-y: scroll; /* Enable vertical scrolling */ } .container {