style: add min width to both panes to avoid files pane not seen when workspace leaf is too narrow

This commit is contained in:
Xu Quan 2025-04-14 19:22:34 +08:00
parent 140a581059
commit 0fb0ddebe7

View file

@ -41,8 +41,13 @@ div.workspace-leaf-content[data-plugin="FolderFile Splitter"] div.view-content {
overflow-y: hidden;
}
.ffs__folders-pane--horizontal {
min-width: 150px;
}
.ffs__files-pane--horizontal {
flex: 1;
min-width: 150px;
}
.ffs__files-pane--vertical {