2021-06-19 18:46:05 +01:00
|
|
|
.onboarding {
|
2021-06-24 21:07:07 +01:00
|
|
|
height: 100vh;
|
2021-06-19 18:46:05 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
div {
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
&.header {
|
2021-06-24 21:07:07 +01:00
|
|
|
gap: 8px;
|
2021-06-19 18:46:05 +01:00
|
|
|
padding: 3em;
|
2021-06-24 21:07:07 +01:00
|
|
|
display: flex;
|
2021-06-19 18:46:05 +01:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.form {
|
|
|
|
flex-grow: 1;
|
|
|
|
max-width: 420px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
margin: auto;
|
|
|
|
display: block;
|
|
|
|
max-height: 420px;
|
2021-07-10 15:42:13 +01:00
|
|
|
border-radius: var(--border-radius);
|
2021-06-19 18:46:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
display: block;
|
|
|
|
margin: 24px 0;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|