Issue #2284 - Adjust some in-content CSS to account for flex definite-sizing change.

As of this change, flex items in a vertical flex container will sometimes
be considered to have "indefinite" sizes, i.e. percent sizes in them will
no longer resolve.
To work around this, they need to provide a definite flex-basis (e.g. as
part of the "flex" shorthand property) if we want percent sizes to
resolve (instead of being treated as "auto") inside of them.
This commit is contained in:
Moonchild 2023-08-13 22:09:27 +02:00 committed by roytam1
commit a02ef4f1d7

View file

@ -96,7 +96,7 @@ ul {
/* Trees */
.tree-container {
margin-top: 1.2em;
flex-grow: 1;
flex: 1 0px;
min-height: 12em;
}