This commit is contained in:
Bruno Windels 2020-08-07 11:16:46 +01:00
parent cb96cc7f36
commit b1dd3933e2
3 changed files with 5 additions and 3 deletions

View File

@ -51,7 +51,7 @@ body {
} }
.RoomPlaceholderView, .RoomView { .RoomPlaceholderView, .RoomView {
flex: 1 0 0; flex: 1 0 0px;
min-width: 0; min-width: 0;
} }
@ -71,7 +71,7 @@ body {
} }
.TimelinePanel ul { .TimelinePanel ul {
flex: 1 0 0; flex: 1 0 0px;
} }
.RoomHeader { .RoomHeader {

View File

@ -49,7 +49,7 @@ limitations under the License.
.LeftPanel div.description { .LeftPanel div.description {
margin: 0; margin: 0;
flex: 1 1 0; flex: 1 1 0px;
min-width: 0; min-width: 0;
} }

View File

@ -30,6 +30,8 @@ limitations under the License.
color: white; color: white;
/* make sure to disable rubber-banding and pull to refresh in a PWA if we'd end up having a scrollbar */ /* make sure to disable rubber-banding and pull to refresh in a PWA if we'd end up having a scrollbar */
overscroll-behavior: none; overscroll-behavior: none;
/* disable rubberband scrolling on document in IE11 */
overflow: hidden;
} }
.hiddenWithLayout { .hiddenWithLayout {