2023-10-26 13:23:48 +02:00

22 lines
286 B
SCSS

@import "@Themes/constants.scss";
.button-container {
display: flex;
justify-content: center;
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;
}
}