2023-04-19 17:49:27 +02:00

22 lines
294 B
SCSS

@import "@Themes/constants.scss";
.buttons-container {
display: flex;
justify-content: space-between;
gap: 16px;
margin-top: 8px;
button {
flex: 1;
}
.sub-container {
flex: 1;
display: flex;
}
@media (max-width: $screen-s) {
flex-direction: column-reverse;
gap: 8px;
}
}