70 lines
950 B
SCSS
70 lines
950 B
SCSS
@use '../.../../../../css/queries.scss' as *;
|
|
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.hasSubmitted {
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 80vh;
|
|
|
|
@include small-break {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.intro {
|
|
margin-bottom: var(--base);
|
|
|
|
@include mid-break {
|
|
margin-bottom: var(--base);
|
|
}
|
|
}
|
|
|
|
.confirmationMessage {
|
|
max-width: 800px;
|
|
text-align: center;
|
|
|
|
* {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.fieldWrap {
|
|
position: relative;
|
|
z-index: 2;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-left: calc(var(--base) * -0.5);
|
|
margin-right: calc(var(--base) * -0.5);
|
|
width: calc(100% + #{var(--base)});
|
|
|
|
> * {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.Select {
|
|
& label {
|
|
position: absolute;
|
|
top: calc(var(--base) * -0.5);
|
|
}
|
|
}
|
|
|
|
.sidebarContent {
|
|
@include mid-break {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.mobileSidebar {
|
|
display: none;
|
|
|
|
@include mid-break {
|
|
display: block;
|
|
margin-bottom: calc(var(--base) * 2);
|
|
}
|
|
}
|