Fix ModalPanel in Firefox
As explained here: https://stackoverflow.com/questions/28636832/firefox-overflow-y-not-working-with-nested-flexbox Flex items need to have min -height/width set to 0 to allow children overflow property to work Closes-Bug: #1754098 Change-Id: Ib1c4765cbdf12e66f98a336e6f3cc85e721db1f0
This commit is contained in:
parent
2a5536ef93
commit
2077c45819
@ -57,11 +57,11 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
min-height: 0, // https://stackoverflow.com/questions/28636832/firefox-overflow-y-not-working-with-nested-flexbox
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
height: 100%;
|
||||
overflow-y: auto; // important for correct responsive behavior
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user