@djb25/digit-ui-css 1.0.73 → 1.0.75
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/package.json
CHANGED
package/src/index.scss
CHANGED
|
@@ -110,6 +110,7 @@
|
|
|
110
110
|
@import "./pages/citizen/SurveyList.scss";
|
|
111
111
|
@import "./pages/citizen/updatePropertyNumber.scss";
|
|
112
112
|
@import "./pages/citizen/citizenDocument.scss";
|
|
113
|
+
@import "./pages/citizen/ekycStatus.scss";
|
|
113
114
|
@import "./pages/employee/surveys.scss";
|
|
114
115
|
@import "./digitv2/index.scss";
|
|
115
116
|
/* @import "./digitv2/typography.scss"; */
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
.ekyc-status-search-card {
|
|
2
|
+
margin-bottom: 24px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.ekyc-status-card-header {
|
|
6
|
+
font-size: 24px;
|
|
7
|
+
font-weight: 700;
|
|
8
|
+
color: #101828;
|
|
9
|
+
margin-bottom: 12px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.ekyc-status-card-text {
|
|
13
|
+
color: #475467;
|
|
14
|
+
margin-bottom: 24px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ekyc-status-error-msg {
|
|
18
|
+
background: #fef3f2;
|
|
19
|
+
border: 1px solid #fecdca;
|
|
20
|
+
color: #b42318;
|
|
21
|
+
padding: 12px 16px;
|
|
22
|
+
border-radius: 8px;
|
|
23
|
+
margin-top: 24px;
|
|
24
|
+
font-size: 14px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ekyc-status-results-card {
|
|
28
|
+
margin-top: 24px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.ekyc-status-overview-header {
|
|
32
|
+
display: flex;
|
|
33
|
+
justify-content: space-between;
|
|
34
|
+
align-items: center;
|
|
35
|
+
background: #f8f9fc;
|
|
36
|
+
border: 1px solid #eaecf0;
|
|
37
|
+
border-radius: 8px;
|
|
38
|
+
padding: 16px 20px;
|
|
39
|
+
margin-bottom: 24px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ekyc-status-label-title {
|
|
43
|
+
font-size: 12px;
|
|
44
|
+
color: #667085;
|
|
45
|
+
text-transform: uppercase;
|
|
46
|
+
font-weight: 600;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.ekyc-status-value-text {
|
|
50
|
+
font-size: 18px;
|
|
51
|
+
font-weight: 700;
|
|
52
|
+
color: #101828;
|
|
53
|
+
margin-top: 4px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.ekyc-status-badge {
|
|
57
|
+
padding: 6px 14px;
|
|
58
|
+
border-radius: 16px;
|
|
59
|
+
font-size: 14px;
|
|
60
|
+
font-weight: 600;
|
|
61
|
+
|
|
62
|
+
&.approved {
|
|
63
|
+
background: #ecfdf3;
|
|
64
|
+
color: #027a48;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&.rejected {
|
|
68
|
+
background: #fef3f2;
|
|
69
|
+
color: #b42318;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&.pending_for_verification, &.pending {
|
|
73
|
+
background: #fffaba;
|
|
74
|
+
color: #b54708;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.ekyc-status-details-section {
|
|
79
|
+
border-top: 1px solid #eaecf0;
|
|
80
|
+
padding-top: 24px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.ekyc-status-details-title {
|
|
84
|
+
font-size: 18px;
|
|
85
|
+
font-weight: 600;
|
|
86
|
+
color: #101828;
|
|
87
|
+
margin-bottom: 16px;
|
|
88
|
+
}
|
|
@@ -1026,3 +1026,30 @@
|
|
|
1026
1026
|
cursor: pointer;
|
|
1027
1027
|
color: #318ed0 !important;
|
|
1028
1028
|
}
|
|
1029
|
+
|
|
1030
|
+
.status-search-composer-wrapper {
|
|
1031
|
+
.inbox-container {
|
|
1032
|
+
padding: 0;
|
|
1033
|
+
margin: 0;
|
|
1034
|
+
background: transparent;
|
|
1035
|
+
}
|
|
1036
|
+
.employee-form-content {
|
|
1037
|
+
padding: 0;
|
|
1038
|
+
margin: 0;
|
|
1039
|
+
background: transparent;
|
|
1040
|
+
> *:not(#search-form) {
|
|
1041
|
+
display: none !important;
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
#search-form {
|
|
1045
|
+
background: transparent;
|
|
1046
|
+
padding: 0;
|
|
1047
|
+
box-shadow: none;
|
|
1048
|
+
border: none;
|
|
1049
|
+
}
|
|
1050
|
+
.search-complaint-container {
|
|
1051
|
+
padding: 0;
|
|
1052
|
+
background: transparent;
|
|
1053
|
+
}
|
|
1054
|
+
}
|
|
1055
|
+
|