Skip to content
Snippets Groups Projects
Commit bb7728c7 authored by Ben's avatar Ben
Browse files

Merge branch 'groups-chat-conversation-textbox-fix' of...

Merge branch 'groups-chat-conversation-textbox-fix' of gitlab.com:benhayward.ben/front into fix/groups-chat-conversation-textbox-fixes-1416
parents 9adda44a e1b46681
No related branches found
No related tags found
Loading
...@@ -31,8 +31,9 @@ minds-groups-profile-conversation { ...@@ -31,8 +31,9 @@ minds-groups-profile-conversation {
} }
.m-group__chat, .m-group__chat > m-comments__thread { .m-group__chat, .m-group__chat > m-comments__thread {
height: 100%; max-height: 100%;
height: calc(100vh - 45px); height: 100vh;
overflow-y: scroll;
position: relative; position: relative;
padding: 0; padding: 0;
margin: 0; margin: 0;
...@@ -40,13 +41,14 @@ minds-groups-profile-conversation { ...@@ -40,13 +41,14 @@ minds-groups-profile-conversation {
flex-direction: column; flex-direction: column;
box-sizing: border-box; box-sizing: border-box;
padding-bottom: 24px; padding-bottom: 24px;
margin-bottom: 45px;
@include m-theme(){ @include m-theme(){
background-color: themed($m-white); background-color: themed($m-white);
} }
.minds-comments-container, .m-comments__thread { .minds-comments-container, .m-comments__thread {
margin-top: 50px;
overflow-y: auto; overflow-y: auto;
max-height: none;
flex: 1; flex: 1;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
......
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