56 lines
725 B
SCSS
56 lines
725 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100%;
|
|
align-items: flex-start;
|
|
width: fit-content;
|
|
|
|
.back-arrow {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.form {
|
|
width: 100%;
|
|
|
|
.content {
|
|
margin-top: 32px;
|
|
|
|
>:not(:last-child) {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
}
|
|
|
|
.button-container {
|
|
width: 100%;
|
|
display: flex;
|
|
text-align: center;
|
|
margin-top: 24px;
|
|
|
|
.cancel-button {
|
|
display: flex;
|
|
margin-right: 32px;
|
|
}
|
|
|
|
@media (max-width: $screen-m) {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
|
|
.cancel-button {
|
|
margin-left: 0;
|
|
margin-top: 12px;
|
|
|
|
>* {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
>* {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |