28 lines
410 B
SCSS
28 lines
410 B
SCSS
:host {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
flex: 1;
|
|
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.chat-toolbar {
|
|
height: 49px;
|
|
min-height: 49px;
|
|
border-bottom: 1px solid;
|
|
|
|
.responsive-chats-button {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.chat-content {
|
|
background: transparent;
|
|
overflow: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
}
|
|
}
|