Skip to content
Snippets Groups Projects
Commit b069eed0 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #3613 from mmarangoni/chatbox-fix

Fixed userlist and chat scrolling in Firefox
parents dc73b512 e42e4c75
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
......@@ -6,6 +6,7 @@
display: flex;
flex-grow: 1;
flex-direction: column;
overflow: hidden;
}
.closeChat {
......
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment