36 lines
572 B
SCSS
36 lines
572 B
SCSS
.chat-content {
|
|
margin-bottom: 200px;
|
|
}
|
|
|
|
.chat-action {
|
|
width: 100%;
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.chat-container {
|
|
max-height: 800px;
|
|
overflow-y: auto;
|
|
position: relative;
|
|
|
|
.chat-content {
|
|
margin-bottom: 150px;
|
|
}
|
|
|
|
}
|
|
|
|
.chat-action {
|
|
width: 75%;
|
|
}
|
|
.conversation-textarea {
|
|
height: 80px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 992px) and (max-width: 1199px) {
|
|
.chat-content {
|
|
margin-bottom: 150px;
|
|
}
|
|
.chat-action {
|
|
width: 66.6%;
|
|
}
|
|
}
|