Skip to content

Commit 4c0c797

Browse files
dorlugasigalCopilot
andcommitted
fix(ui): make side panel sessions list scrollable
Add min-height: 0 and flex-basis: 0 to .side-panel-list so it properly shrinks within the flex column and enables overflow scrolling when sessions exceed the panel height. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 7ec191f commit 4c0c797

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

public/terminal.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1229,7 +1229,8 @@
12291229
}
12301230

12311231
.side-panel-list {
1232-
flex: 1;
1232+
flex: 1 1 0;
1233+
min-height: 0;
12331234
overflow-y: auto;
12341235
padding: 8px;
12351236
-webkit-overflow-scrolling: touch;

0 commit comments

Comments
 (0)