37 lines
605 B
SCSS
Executable File
37 lines
605 B
SCSS
Executable File
.chat-list {
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin-bottom: 1rem;
|
|
display: flex;
|
|
|
|
&.even {
|
|
-webkit-box-pack: end;
|
|
-ms-flex-pack: end;
|
|
-moz-justify-content: flex-end;
|
|
justify-content: flex-end;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
.chat-app {
|
|
.mat-drawer {
|
|
width: 320px;
|
|
}
|
|
.ng-scroll-content {
|
|
display: block !important;
|
|
}
|
|
}
|
|
|
|
.chat-listing {
|
|
.mdc-list-item {
|
|
height: 75px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.mdc-list-item__primary-text {
|
|
margin-bottom: -23px !important;
|
|
}
|
|
}
|
|
}
|