1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-07 22:46:13 +01:00
fab-manager/app/frontend/src/stylesheets/modules/plans/plan-form.scss

41 lines
806 B
SCSS
Raw Normal View History

2022-11-10 19:01:36 +01:00
.plan-form {
2023-01-24 09:47:01 +01:00
max-width: 1260px;
margin: 2.4rem auto 0;
padding: 0 3rem 6rem;
display: flex;
flex-direction: column;
& > header {
padding-bottom: 0;
@include header($sticky: true);
gap: 2.4rem;
}
2023-01-24 09:47:01 +01:00
&-content {
display: flex;
flex-direction: column;
2023-01-24 09:47:01 +01:00
gap: 3.2rem;
2023-01-24 09:47:01 +01:00
section { @include layout-settings; }
.grp {
display: flex;
flex-direction: column;
@media (min-width: 640px) {flex-direction: row; }
.form-item { margin: 0; }
.form-item:first-child { margin-right: 2.4rem; }
}
.partner {
display: flex;
flex-direction: column-reverse;
align-items: flex-end;
gap: 0 2.4rem;
@media (min-width: 640px) {
flex-direction: row;
button { margin-bottom: 1.6rem; }
}
}
}
2022-11-10 19:01:36 +01:00
}