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:
parent
729b5a2082
commit
04748ec9a6
1 changed files with 1 additions and 0 deletions
|
@ -14,6 +14,7 @@ $icons: (
|
|||
#zotero-collections-pane {
|
||||
min-width: $min-width-collections-pane;
|
||||
width: $min-width-collections-pane;
|
||||
flex-shrink: 0;
|
||||
background: var(--material-sidepane);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue