Don't allow flex layout to shrink collections pane

updateLayoutConstraints() needs its size to be fixed across window
resizes. It didn't shrink automatically until fx115, I think, and this
commit restores that behavior.

Fixes #4062
This commit is contained in:
Abe Jellinek 2024-05-01 15:30:12 -04:00
parent 729b5a2082
commit 04748ec9a6

View file

@ -14,6 +14,7 @@ $icons: (
#zotero-collections-pane { #zotero-collections-pane {
min-width: $min-width-collections-pane; min-width: $min-width-collections-pane;
width: $min-width-collections-pane; width: $min-width-collections-pane;
flex-shrink: 0;
background: var(--material-sidepane); background: var(--material-sidepane);
} }