fix room lists growing taller than screen height in FF
sections with flex-basis don't seem to shrink smaller in FF, so use flexGrow which is unitless/proportional but works as wellpull/21833/head
parent
f42ab32e05
commit
5c843acc10
|
@ -350,7 +350,7 @@ const RoomSubList = React.createClass({
|
||||||
} else {
|
} else {
|
||||||
const heightEstimation = (len * 40) + 31;
|
const heightEstimation = (len * 40) + 31;
|
||||||
const style = {
|
const style = {
|
||||||
flexBasis: `${heightEstimation}px`,
|
flexGrow: `${heightEstimation}`,
|
||||||
maxHeight: `${heightEstimation}px`,
|
maxHeight: `${heightEstimation}px`,
|
||||||
};
|
};
|
||||||
const GeminiScrollbarWrapper = sdk.getComponent("elements.GeminiScrollbarWrapper");
|
const GeminiScrollbarWrapper = sdk.getComponent("elements.GeminiScrollbarWrapper");
|
||||||
|
|
Loading…
Reference in New Issue