ebs/assets/styles/_chat.scss
2023-12-21 08:49:38 +01:00

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%;
}
}