File size: 2,012 Bytes
a8b3f00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.stepsHeader {
  @apply flex items-center px-6 py-6;
  color: #344054;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.navBack {
  @apply box-border flex justify-center items-center mr-3 w-8 h-8 bg-white bg-center bg-no-repeat cursor-pointer hover:border-gray-300;
  border: 0.5px solid #F2F4F7;
  box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  border-radius: 32px;
  background-image: url(../assets/arrow-narrow-left.svg);
  background-size: 16px;
}
.stepList {
  @apply p-4 relative;
  line-height: 18px;
}

.stepItem {
  @apply relative flex justify-items-start pt-3 pr-0 pb-3 box-content;
  padding-left: 52px;
  font-size: 13px;
  height: 18px;
}

.stepItem.step1::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 23px;
  width: 2px;
  height: 7px;
  background-color: #f2f4f7;
}

.stepItem.step2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 23px;
  width: 2px;
  height: 100%;
  background-color: #f2f4f7;
}
.stepItem.step2::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 23px;
  width: 2px;
  height: 28px;
  background-color: #fff;
}

.stepItem.step3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 23px;
  width: 2px;
  height: 7px;
  background-color: #f2f4f7;
}

.stepNum {
  @apply box-border absolute top-2 left-3 flex justify-center items-center  w-6 h-6;
  color: #98a2b3;
  font-size: 12px;
  border: 1px solid #F2F4F7;
  border-radius: 24px;
  z-index: 1;
}

.stepName {
  color: #98a2b3;
}

.stepItem.active .stepNum {
  color: #1c64f2;
  background-color: #EFF4FF;
  border: none;
}

.stepItem.active .stepName {
  color: #1c64f2;
}

.stepItem.done .stepNum {
  color: #667085;
  background-color: #f2f4f7;
  border: none;
}

.stepItem.done .stepNum::after {
  content: '';
  display: flex;
  width: 12px;
  height: 12px;
  background: center no-repeat url(../assets/check.svg);
  background-size: 12px;
}

.stepItem.done .stepName {
  color: #667085;
}