Fix room views not having proper container

pull/21833/head
Dariusz Niemczyk 2021-08-20 15:57:22 +02:00
parent 7d1e71fea4
commit 86b6c6a836
No known key found for this signature in database
GPG Key ID: 3E8DC619E3C59A05
2 changed files with 10 additions and 1 deletions

View File

@ -14,6 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
.mx_RoomView_wrapper {
display: flex;
flex-direction: column;
flex: 1;
position: relative;
}
.mx_RoomView { .mx_RoomView {
word-wrap: break-word; word-wrap: break-word;
display: flex; display: flex;

View File

@ -656,7 +656,9 @@ class LoggedInView extends React.Component<IProps, IState> {
/> />
<ResizeHandle /> <ResizeHandle />
</div> </div>
{ pageElement } <div className="mx_RoomView_wrapper">
{ pageElement }
</div>
</div> </div>
</div> </div>
<CallContainer /> <CallContainer />