blob: 3b5071480482cc1955999ee9c5f7140fc37efabd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
.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 {
font-size: 28px;
margin-bottom: 22px;
margin-top: 50px;
}
&__description {
text-align: center;
div {
font-size: 16px;
}
@media screen and (max-width: 575px) {
font-size: .9rem;
}
}
.first-time-flow__button {
width: 184px;
font-weight: 500;
margin-top: 44px;
}
}
|