Maxime Lalo cdd039b4d7 🐛 Fixing build
2024-07-29 18:34:44 +02:00

44 lines
673 B
SCSS

@import "@Themes/constants.scss";
.root {
width: 566px;
margin: auto;
margin-top: 80px;
display: flex;
flex-direction: column;
gap: var(--spacing-xl, 32px);
@media (max-width: $screen-m) {
width: 474px;
}
@media (max-width: $screen-s) {
width: 100%;
padding: var(--spacing-md, 16px);
}
.header {
display: flex;
flex-direction: column;
gap: var(--spacing-sm, 8px);
}
.content {
display: flex;
flex-direction: column;
gap: var(--spacing-xl, 32px);
.section {
.section-title {
margin-bottom: var(--spacing-xl, 32px);
}
> form {
display: flex;
flex-direction: column;
gap: var(--spacing-md, 16px);
}
}
}
}