fix: change overflow-y property to scroll for consistent vertical scrolling behavior

This commit is contained in:
Will Miao
2025-06-27 11:44:43 +08:00
parent 7f2d1670a0
commit 63dc5c2bdb

View File

@@ -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 {