You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
703 B
44 lines
703 B
.welcome-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
max-width: 442px;
|
|
padding: 0 18px;
|
|
color: black;
|
|
|
|
&__wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
height: 100%;
|
|
margin-top: 110px;
|
|
}
|
|
|
|
&__header {
|
|
@include H3;
|
|
|
|
margin-bottom: 22px;
|
|
margin-top: 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
&__description {
|
|
text-align: center;
|
|
|
|
div {
|
|
@include Paragraph;
|
|
}
|
|
|
|
@media screen and (max-width: 575px) {
|
|
font-size: 0.9rem;
|
|
}
|
|
}
|
|
|
|
.first-time-flow__button {
|
|
width: 184px;
|
|
font-weight: 500;
|
|
margin-top: 44px;
|
|
}
|
|
}
|
|
|