22 lines
286 B
SCSS
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;
|
|
}
|
|
} |