forked from deriv-com/p2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChecklist.scss
68 lines (55 loc) · 1.23 KB
/
Checklist.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
58
59
60
61
62
63
64
65
66
67
68
@mixin icon-wrapper {
display: flex;
align-items: center;
justify-content: center;
width: 3.2rem;
height: 3.2rem;
}
.checklist {
display: flex;
flex-direction: column;
margin-top: 2.4rem;
@include mobile-or-tablet-screen {
width: 100%;
}
& span {
max-width: 80%;
}
&__item {
padding: 1.6rem;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0px -1px 0px 0px #f2f3f4 inset;
width: 41rem;
@include mobile-or-tablet-screen {
width: 100%;
}
&-button {
@include icon-wrapper;
padding: 0;
&--disabled {
opacity: 0.5;
cursor: not-allowed;
}
&--done {
cursor: default;
background-color: #4bb4b3 !important;
}
&-icon {
fill: #fff;
}
}
&-checkmark {
@include icon-wrapper;
&-icon {
fill: #fff;
}
}
&-text {
display: flex;
flex-direction: column;
width: 100%;
}
}
}