diff --git a/res/css/views/rooms/_RoomSublist.scss b/res/css/views/rooms/_RoomSublist.scss index a449591c5c..558014e21c 100644 --- a/res/css/views/rooms/_RoomSublist.scss +++ b/res/css/views/rooms/_RoomSublist.scss @@ -198,6 +198,11 @@ limitations under the License. mask-image: linear-gradient(0deg, transparent, black 4px); } + &.mx_RoomSublist_resizeBox_forceExpanded .mx_RoomSublist_tiles { + // in this state the div can collapse its height entirely in Chromium, so prevent that by allowing overflow + overflow: visible; + } + .mx_RoomSublist_resizerHandles_showNButton { flex: 0 0 32px; } diff --git a/src/components/views/rooms/RoomSublist.tsx b/src/components/views/rooms/RoomSublist.tsx index c1c6672b72..263795fb71 100644 --- a/src/components/views/rooms/RoomSublist.tsx +++ b/src/components/views/rooms/RoomSublist.tsx @@ -738,7 +738,7 @@ export default class RoomSublist extends React.Component { let content = null; if (visibleTiles.length > 0 && this.props.forceExpanded) { - content =
+ content =
{ visibleTiles }