@djb25/digit-ui-css 1.0.70 → 1.0.72
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/components/EkycAssign.scss +1 -1
- package/src/components/SearchForm.scss +6 -0
- package/src/components/card.scss +172 -63
- package/src/components/reusableClasses.scss +145 -0
- package/src/components/table.scss +170 -1
- package/src/components/textfields.scss +3 -1
- package/src/components/topbar.scss +0 -5
- package/src/index.scss +1 -125
- package/src/pages/citizen/DocumentList.scss +1 -2
- package/src/pages/employee/cardfix.scss +8 -12
- package/src/pages/employee/ekyc.scss +9 -1
package/src/index.scss
CHANGED
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
@import "./components/plusMinus.scss";
|
|
84
84
|
@import "./components/financeUi.scss";
|
|
85
85
|
@import "./components/landingpage.scss";
|
|
86
|
+
@import "./components/reusableClasses.scss";
|
|
86
87
|
|
|
87
88
|
@import "./pages/employee/index.scss";
|
|
88
89
|
@import "./pages/employee/cardfix.scss";
|
|
@@ -141,70 +142,6 @@ h6 {
|
|
|
141
142
|
font-weight: inherit;
|
|
142
143
|
}
|
|
143
144
|
|
|
144
|
-
.flex-one {
|
|
145
|
-
@apply flex-1;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.flex-roww {
|
|
149
|
-
display: flex;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.display-flex-gap-2 {
|
|
153
|
-
@apply flex gap-3;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.rm-mb {
|
|
157
|
-
margin-bottom: unset !important;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.w-fullwidth {
|
|
161
|
-
@apply w-full;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
.margin-unset {
|
|
165
|
-
margin: unset !important;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
.text-align-center {
|
|
169
|
-
@apply text-center;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.desktop-only {
|
|
173
|
-
@apply hidden;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
@screen dt {
|
|
177
|
-
.desktop-only {
|
|
178
|
-
@apply block;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.mobile-only {
|
|
183
|
-
@apply block;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
@screen dt {
|
|
187
|
-
.mobile-only {
|
|
188
|
-
@apply hidden;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.dark {
|
|
193
|
-
@apply text-text-primary;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
.mrlg {
|
|
197
|
-
@apply mr-lg;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.mrsm {
|
|
201
|
-
@apply mr-sm;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.mbsm {
|
|
205
|
-
@apply mb-sm;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
145
|
.home-link {
|
|
209
146
|
margin-left: 16px;
|
|
210
147
|
margin-bottom: 16px;
|
|
@@ -908,67 +845,6 @@ input[type="number"] {
|
|
|
908
845
|
margin-top: 90px;
|
|
909
846
|
}
|
|
910
847
|
|
|
911
|
-
.flex-box {
|
|
912
|
-
display: flex;
|
|
913
|
-
width: 100%;
|
|
914
|
-
height: 100%;
|
|
915
|
-
max-width: 100%;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
.flex-box-center {
|
|
919
|
-
display: flex;
|
|
920
|
-
justify-content: center;
|
|
921
|
-
align-items: center;
|
|
922
|
-
width: 100%;
|
|
923
|
-
height: 100%;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
.flex-box-col {
|
|
927
|
-
flex-direction: column;
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
.flex-box-content-between {
|
|
931
|
-
display: flex;
|
|
932
|
-
justify-content: space-between;
|
|
933
|
-
align-items: center;
|
|
934
|
-
width: 100%;
|
|
935
|
-
height: 100%;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
.flex-center {
|
|
939
|
-
display: flex;
|
|
940
|
-
justify-content: center;
|
|
941
|
-
align-items: center;
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
.flex-gap-1 {
|
|
945
|
-
gap: 4px;
|
|
946
|
-
}
|
|
947
|
-
|
|
948
|
-
.flex-gap-2 {
|
|
949
|
-
gap: 8px;
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
.flex-gap-3 {
|
|
953
|
-
gap: 12px;
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
.flex-gap-4 {
|
|
957
|
-
gap: 16px;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
.flex-gap-5 {
|
|
961
|
-
gap: 20px;
|
|
962
|
-
}
|
|
963
|
-
|
|
964
|
-
.bc-white {
|
|
965
|
-
background-color: #fff;
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
.round-medium {
|
|
969
|
-
border-radius: 6px;
|
|
970
|
-
}
|
|
971
|
-
|
|
972
848
|
.rdrDateDisplayItem {
|
|
973
849
|
input[readonly] {
|
|
974
850
|
border-radius: 4px;
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
.documentDetails_pdf {
|
|
194
|
-
@apply
|
|
194
|
+
@apply cursor-pointer;
|
|
195
195
|
}
|
|
196
196
|
.grid_section {
|
|
197
197
|
@apply grid grid-cols-4 gap-4;
|
|
@@ -272,7 +272,6 @@
|
|
|
272
272
|
}
|
|
273
273
|
}
|
|
274
274
|
.confirmation_box {
|
|
275
|
-
height: 130px;
|
|
276
275
|
display: flex;
|
|
277
276
|
align-items: center;
|
|
278
277
|
padding-left: 8px;
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
div{
|
|
8
|
-
@apply text-link;
|
|
9
|
-
span{
|
|
10
|
-
@apply text-link font-bold;
|
|
11
|
-
}
|
|
1
|
+
.card-count {
|
|
2
|
+
@apply pr-xl;
|
|
3
|
+
div {
|
|
4
|
+
@apply text-link;
|
|
5
|
+
span {
|
|
6
|
+
@apply text-link font-bold;
|
|
12
7
|
}
|
|
13
|
-
}
|
|
8
|
+
}
|
|
9
|
+
}
|
|
@@ -299,8 +299,10 @@
|
|
|
299
299
|
}
|
|
300
300
|
|
|
301
301
|
.ekyc-application-link {
|
|
302
|
+
font-size: 16px;
|
|
303
|
+
cursor: pointer;
|
|
302
304
|
font-weight: 600;
|
|
303
|
-
color: #
|
|
305
|
+
color: #318ed0 !important;
|
|
304
306
|
}
|
|
305
307
|
|
|
306
308
|
/* SearchConsumer Styles */
|
|
@@ -1018,3 +1020,9 @@
|
|
|
1018
1020
|
}
|
|
1019
1021
|
}
|
|
1020
1022
|
}
|
|
1023
|
+
|
|
1024
|
+
.ekyc-application-link {
|
|
1025
|
+
font-size: 16px;
|
|
1026
|
+
cursor: pointer;
|
|
1027
|
+
color: #318ed0 !important;
|
|
1028
|
+
}
|