Fixed comment controls style for mobile

This commit is contained in:
kvakazyambra 2023-05-18 21:48:24 +03:00
parent b08f6a3621
commit 75e78cb7c6

View File

@ -9,9 +9,11 @@
}
.actions {
display: flex;
flex-direction: row;
justify-content: space-between;
@include media-breakpoint-up(sm) {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.menu,
.buttons {
@ -19,6 +21,12 @@
flex-direction: row;
}
@include media-breakpoint-down(sm) {
.menu {
margin-bottom: 1em;
}
}
.buttons {
gap: 10px;
}