mirror of
https://github.com/revoltchat/revite.git
synced 2025-02-24 01:01:00 -05:00
43 lines
786 B
SCSS
43 lines
786 B
SCSS
.onboarding {
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
div {
|
|
flex: 1;
|
|
|
|
&.header {
|
|
gap: 8px;
|
|
padding: 3em;
|
|
display: flex;
|
|
text-align: center;
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
&.form {
|
|
flex-grow: 1;
|
|
max-width: 420px;
|
|
|
|
img {
|
|
margin: auto;
|
|
display: block;
|
|
max-height: 420px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
margin: 24px 0;
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|