Skip to content

Fix overflow scroll in Firefox with the Vue left-menu

Eric Eastwood requested to merge fix-firefox-overflow-scroll-vue-left-menu into develop

Fix overflow scroll in Firefox with the Vue left-menu. Just have a long room list

Before After

Whenever you've got an element with overflow: [hidden|scroll|auto] inside of a flex item, you need to give its ancestor flex item min-width:0 (in a horizontal flex container) or min-height:0 (in a vertical flex container), to disable this min-sizing behavior, or else the flex item will refuse to shrink smaller than the child's min-content size.

https://stackoverflow.com/a/28639686/796832

Edited by Eric Eastwood

Merge request reports