forked from deriv-com/p2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuySellForm.scss
57 lines (47 loc) · 1.03 KB
/
BuySellForm.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
54
55
56
57
.buy-sell-form {
width: 45.6rem;
height: unset;
border-radius: 8px;
@include mobile-or-tablet-screen {
width: 100vw;
height: 100vh;
box-shadow: none;
&__footer {
padding: 1.6rem;
border-top: 2px solid #f2f3f4;
}
}
& .deriv-modal__body {
padding: 0;
}
&--is-buy {
height: 64.9rem;
& .deriv-modal__body {
max-height: calc(100vh - 13rem);
overflow: auto;
}
@include mobile-or-tablet-screen {
height: unset;
max-height: unset;
}
}
&__full-page-modal {
position: absolute;
top: 0;
left: 0;
z-index: 1;
&--is-buy {
top: -10rem;
}
& .payment-method-form {
background: #fff;
z-index: 1;
inset: 0;
&__form {
& .payment-methods-form-footer {
bottom: 0;
}
}
}
}
}