Skip to content

Commit 28429ec

Browse files
hackerwinsclaude
andauthored
Fix double vertical scrollbar on documents/schemas/channels pages (#281)
Remove duplicate overflow-y from nested list containers so only the document table scrolls, eliminating the extra page-level scrollbar. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent cb3bc2b commit 28429ec

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/assets/styles/pages/admin_project_document.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
.channel_list_area {
4747
display: flex;
4848
flex-direction: column;
49-
overflow-y: auto;
49+
flex: 1;
50+
min-height: 0;
5051
padding-top: variables.$spacing_48;
5152

5253
@include mixins-lib.tabletStart() {
@@ -71,7 +72,8 @@
7172

7273
.document_table {
7374
overflow-y: auto;
74-
height: 100%;
75+
flex: 1;
76+
min-height: 0;
7577
margin-top: variables.$spacing_16;
7678

7779
@include mixins-lib.tabletStart() {

0 commit comments

Comments
 (0)