fixed userlist and chat scrolling in Firefox

This commit is contained in:
Matthew Marangoni 2017-01-27 14:13:25 -08:00
parent 6110797486
commit e42e4c759a
3 changed files with 8 additions and 0 deletions

View File

@ -7,6 +7,10 @@
flex-grow: 1;
flex-shrink: 1;
position: relative;
overflow-x: hidden;
overflow-y: auto;
padding-right: 12px;
padding-bottom: 12px;
}
.messageList {

View File

@ -6,6 +6,7 @@
display: flex;
flex-grow: 1;
flex-direction: column;
overflow: hidden;
}
.closeChat {

View File

@ -91,6 +91,7 @@ $user-icons-color-hover: $color-gray;
.content {
@extend %flex-column;
flex-grow: 9;
overflow: hidden;
}
.lists {
@ -135,6 +136,8 @@ $user-icons-color-hover: $color-gray;
flex-basis: 31rem;
flex-grow: 1;
flex-shrink: 1;
overflow-x: hidden;
overflow-y: auto;
}
.separator {