@djb25/digit-ui-css 1.0.46 → 1.0.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +1 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/pages/employee/ekyc.scss +120 -25
package/package.json
CHANGED
|
@@ -29,46 +29,141 @@
|
|
|
29
29
|
margin-bottom: 24px;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
.ekyc-status-
|
|
32
|
+
.ekyc-status-wrapper {
|
|
33
33
|
display: flex;
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
align-items: center;
|
|
35
|
+
justify-content: space-between;
|
|
36
|
+
gap: 32px;
|
|
37
|
+
padding: 24px;
|
|
38
|
+
background: #ffffff;
|
|
39
|
+
border-radius: 16px;
|
|
40
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
41
|
+
border: 1px solid #f2f4f7;
|
|
42
|
+
position: relative;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
|
|
45
|
+
&::before {
|
|
46
|
+
content: "";
|
|
47
|
+
position: absolute;
|
|
48
|
+
top: 0;
|
|
49
|
+
left: 0;
|
|
50
|
+
width: 4px;
|
|
51
|
+
height: 100%;
|
|
52
|
+
background: #185FA5;
|
|
53
|
+
opacity: 0.1;
|
|
54
|
+
}
|
|
36
55
|
}
|
|
37
56
|
|
|
38
|
-
.ekyc-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
57
|
+
.ekyc-chart-container {
|
|
58
|
+
position: relative;
|
|
59
|
+
width: 110px;
|
|
60
|
+
height: 110px;
|
|
61
|
+
flex-shrink: 0;
|
|
62
|
+
overflow: hidden;
|
|
43
63
|
|
|
44
|
-
|
|
45
|
-
|
|
64
|
+
.chart-center-content {
|
|
65
|
+
position: absolute;
|
|
66
|
+
top: 50%;
|
|
67
|
+
left: 50%;
|
|
68
|
+
transform: translate(-50%, -50%);
|
|
69
|
+
text-align: center;
|
|
70
|
+
width: 100%;
|
|
71
|
+
pointer-events: none;
|
|
72
|
+
z-index: 1;
|
|
73
|
+
|
|
74
|
+
.total-count {
|
|
75
|
+
font-size: 18px;
|
|
76
|
+
font-weight: 800;
|
|
77
|
+
color: #101828;
|
|
78
|
+
line-height: 1.1;
|
|
79
|
+
letter-spacing: -0.02em;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.total-label {
|
|
83
|
+
font-size: 8px;
|
|
84
|
+
font-weight: 700;
|
|
85
|
+
color: #667085;
|
|
86
|
+
text-transform: uppercase;
|
|
87
|
+
letter-spacing: 0.08em;
|
|
88
|
+
margin-top: 1px;
|
|
89
|
+
}
|
|
46
90
|
}
|
|
91
|
+
}
|
|
47
92
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
93
|
+
.ekyc-status-items {
|
|
94
|
+
display: flex;
|
|
95
|
+
flex-direction: row;
|
|
96
|
+
gap: 16px;
|
|
97
|
+
flex-wrap: nowrap;
|
|
98
|
+
justify-content: flex-start;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.ekyc-status-card-premium {
|
|
102
|
+
display: flex;
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
align-items: flex-start;
|
|
105
|
+
gap: 8px;
|
|
106
|
+
padding: 8px 24px;
|
|
107
|
+
border-radius: 12px;
|
|
108
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
109
|
+
min-width: 200px;
|
|
110
|
+
background: #ffffff;
|
|
111
|
+
border: 1px solid transparent;
|
|
112
|
+
|
|
113
|
+
&:hover {
|
|
114
|
+
background: #f9fafb;
|
|
115
|
+
transform: translateY(-2px);
|
|
116
|
+
border-color: #eaecf0;
|
|
51
117
|
}
|
|
52
118
|
|
|
53
|
-
.
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
119
|
+
.status-indicator {
|
|
120
|
+
width: 24px;
|
|
121
|
+
height: 4px;
|
|
122
|
+
border-radius: 10px;
|
|
123
|
+
margin-bottom: 4px;
|
|
57
124
|
|
|
125
|
+
&.total {
|
|
126
|
+
background: #185FA5;
|
|
127
|
+
box-shadow: 0 0 8px rgba(24, 95, 165, 0.2);
|
|
128
|
+
}
|
|
58
129
|
&.pending {
|
|
59
|
-
|
|
130
|
+
background: #f47738;
|
|
131
|
+
box-shadow: 0 0 8px rgba(244, 119, 56, 0.2);
|
|
60
132
|
}
|
|
61
|
-
|
|
62
133
|
&.completed {
|
|
63
|
-
|
|
134
|
+
background: #5495fe;
|
|
135
|
+
box-shadow: 0 0 8px rgba(84, 149, 254, 0.2);
|
|
64
136
|
}
|
|
65
137
|
}
|
|
66
138
|
|
|
67
|
-
.
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
139
|
+
.status-info {
|
|
140
|
+
display: flex;
|
|
141
|
+
flex-direction: column;
|
|
142
|
+
gap: 2px;
|
|
143
|
+
|
|
144
|
+
.count {
|
|
145
|
+
font-size: 24px;
|
|
146
|
+
font-weight: 800;
|
|
147
|
+
color: #101828;
|
|
148
|
+
line-height: 1.2;
|
|
149
|
+
letter-spacing: -0.02em;
|
|
150
|
+
|
|
151
|
+
&.pending {
|
|
152
|
+
color: #f47738;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
&.completed {
|
|
156
|
+
color: #5495fe;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.label {
|
|
161
|
+
font-size: 13px;
|
|
162
|
+
font-weight: 600;
|
|
163
|
+
color: #475467;
|
|
164
|
+
text-transform: uppercase;
|
|
165
|
+
letter-spacing: 0.05em;
|
|
166
|
+
}
|
|
72
167
|
}
|
|
73
168
|
}
|
|
74
169
|
|