Merge pull request #67 from beatriceo/dashboard-fix
Fixed Dashboard issues and removed horizontal scroll from chat window
This commit is contained in:
commit
87728fc459
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
#messages-container {
|
#messages-container {
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
|
overflow-x: hidden;
|
||||||
height: 95%;
|
height: 95%;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue