webapp/src/components/_shared/CommentEditor/styles/CommentEditor.module.scss

35 lines
511 B
SCSS
Raw Normal View History

.commentEditor {
2023-05-15 21:40:55 +00:00
background: #f7f7f8;
border-radius: 16px;
2023-02-17 18:12:28 +00:00
padding: 16px;
.textarea {
min-height: 1em;
overflow: hidden;
}
.actions {
@include media-breakpoint-up(sm) {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.menu,
.buttons {
display: flex;
flex-direction: row;
}
2023-02-10 01:19:20 +00:00
@include media-breakpoint-down(sm) {
.menu {
margin-bottom: 1em;
}
}
.buttons {
gap: 10px;
}
}
}