forked from deriv-com/deriv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavigate-to-personal-details.scss
53 lines (44 loc) · 1.02 KB
/
navigate-to-personal-details.scss
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
43
44
45
46
47
48
49
50
51
52
53
.navigate-to-personal-details {
display: flex;
flex-direction: column;
@include desktop-screen {
position: relative;
top: 10%;
row-gap: 2.6rem;
width: 50%;
height: 100%;
align-self: center;
}
&__body {
display: flex;
flex-direction: column;
align-items: center;
@include mobile-or-tablet-screen {
margin-top: 45%;
}
&--text {
@include desktop-screen {
line-height: 3rem;
}
@include mobile-or-tablet-screen {
line-height: 2.4rem;
padding: 0 3.2rem;
}
}
@include desktop-screen {
row-gap: 2.6rem;
}
@include mobile-or-tablet-screen {
row-gap: 1.6rem;
flex-grow: 1;
}
}
&__footer {
width: 100%;
display: flex;
justify-content: center;
&--layout {
padding: 1.6rem;
}
}
}