25 lines
322 B
SCSS
25 lines
322 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
.header {
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.form-container {
|
|
margin-top: 32px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 32px;
|
|
}
|
|
|
|
.buttons-container {
|
|
display: flex;
|
|
gap: 32px;
|
|
|
|
@media (max-width: $screen-s) {
|
|
flex-direction: column-reverse;
|
|
gap: 16px;
|
|
}
|
|
}
|
|
}
|