You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
* Currently the secondary container was pushed to the end of the list-item by using a flex element with auto.
This is causing issues with custom content of developers, because the flex filler has a high priority and reserves space.
* This can be fixed, by using a margin auto, which has a lower priority and isn't reserving any space.
This allows the user to style the content himself and we won't interfere.
* The height of 100% for the secondary item container was depending on its parent DOM structure. So in some weird cases, the secondary item container was reserving 100% height of the screen. This property even became unnecessary, because now the secondary items are expecting its size correctly and will fill the remaining space by the auto margin.
Fixes#8094. Fixes#7976.
Closes#8075
0 commit comments