Improve card layout responsiveness and scrolling behavior

This commit is contained in:
Will Miao
2025-05-18 07:49:39 +08:00
parent da1be0dc65
commit 488654abc8
2 changed files with 6 additions and 2 deletions

View File

@@ -1,10 +1,10 @@
.page-content {
height: calc(100vh - 48px); /* Full height minus header */
margin-top: 48px; /* Push down below header */
overflow-y: auto; /* Enable scrolling here */
width: 100%;
position: relative;
overflow-y: scroll;
overflow-x: hidden; /* Prevent horizontal scrolling */
overflow-y: auto; /* Enable vertical scrolling */
}
.container {