Fixed Dashboard issues and removed horizontal scroll from chat window

This commit is contained in:
Rekai Musuka 2018-09-06 11:08:08 +01:00
parent a0672654b1
commit 2ff5dd0f46
2 changed files with 5 additions and 2 deletions

View File

@ -163,7 +163,9 @@ a:hover {
.contacts { .contacts {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; // justify-content: center;
height: calc(100vh - 3.5em);
} }
.close-location { .close-location {
@ -180,8 +182,8 @@ a:hover {
} }
.contacts-list{ .contacts-list{
height: 90vh;
overflow: scroll; overflow: scroll;
overflow-x: hidden;
} }

View File

@ -11,6 +11,7 @@
#messages-container { #messages-container {
overflow: scroll; overflow: scroll;
overflow-x: hidden;
height: 95%; height: 95%;
padding: 10px; padding: 10px;
} }