@djb25/digit-ui-css 1.0.76 → 1.0.78
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/card.scss +1 -1
- package/src/components/table.scss +2 -2
- package/src/pages/citizen/HomePageWrapper.scss +44 -33
- package/src/pages/employee/ekyc.scss +17 -12
- package/src/pages/employee/inbox.scss +0 -36
- package/src/pages/employee/index.scss +2 -2
package/package.json
CHANGED
package/src/components/card.scss
CHANGED
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
display: flex;
|
|
215
215
|
gap: 4px;
|
|
216
216
|
.col-head {
|
|
217
|
-
font-size:
|
|
217
|
+
font-size: 14px;
|
|
218
218
|
font-weight: 700;
|
|
219
219
|
text-transform: uppercase;
|
|
220
220
|
letter-spacing: 0.07em;
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
|
|
325
325
|
td {
|
|
326
326
|
@apply border-t border-border text-left align-middle;
|
|
327
|
-
padding:
|
|
327
|
+
padding: 10px 18px;
|
|
328
328
|
vertical-align: middle;
|
|
329
329
|
font-size: 16px;
|
|
330
330
|
white-space: nowrap;
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
overflow: hidden;
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
.citizen-app-container
|
|
122
|
+
.citizen-app-container>* {
|
|
123
123
|
position: relative;
|
|
124
124
|
z-index: 1;
|
|
125
125
|
}
|
|
@@ -304,6 +304,7 @@
|
|
|
304
304
|
}
|
|
305
305
|
|
|
306
306
|
@media (max-width: 780px) {
|
|
307
|
+
|
|
307
308
|
/* On mobile, SideBarStatic shouldn't prevent the drawer from appearing. */
|
|
308
309
|
.SideBarStatic {
|
|
309
310
|
display: block;
|
|
@@ -341,44 +342,56 @@
|
|
|
341
342
|
transition: filter 0.3s ease;
|
|
342
343
|
}
|
|
343
344
|
|
|
344
|
-
|
|
345
|
-
position: absolute;
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
345
|
+
.moduleTitle {
|
|
346
|
+
position: absolute !important;
|
|
347
|
+
bottom: 35px !important;
|
|
348
|
+
left: 50% !important;
|
|
349
|
+
transform: translateX(-50%) !important;
|
|
350
|
+
z-index: 2 !important;
|
|
351
|
+
text-align: center !important;
|
|
352
|
+
width: max-content !important;
|
|
353
|
+
|
|
354
|
+
h1, h4 {
|
|
355
|
+
margin: 0 !important;
|
|
356
|
+
color: #fff !important;
|
|
357
|
+
font-weight: 800 !important;
|
|
358
|
+
letter-spacing: 0.5px !important;
|
|
359
|
+
text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
h1 {
|
|
363
|
+
@apply text-heading-xl;
|
|
364
|
+
font-size: 38px !important;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
h4 {
|
|
368
|
+
font-size: 18px !important;
|
|
369
|
+
font-weight: 700 !important;
|
|
370
|
+
}
|
|
357
371
|
}
|
|
358
372
|
|
|
359
373
|
.moduleLinkHomePageBackButton {
|
|
360
374
|
border: none;
|
|
361
375
|
position: absolute;
|
|
362
|
-
top:
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
backdrop-filter: blur(8px);
|
|
367
|
-
-webkit-backdrop-filter: blur(8px);
|
|
376
|
+
top: 35px !important;
|
|
377
|
+
left: 16px !important;
|
|
378
|
+
background: #ffffff !important;
|
|
379
|
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
|
|
368
380
|
border-radius: 50%;
|
|
369
|
-
width:
|
|
370
|
-
height:
|
|
381
|
+
width: 45px;
|
|
382
|
+
height: 45px;
|
|
371
383
|
display: flex;
|
|
372
384
|
justify-content: center;
|
|
373
385
|
align-items: center;
|
|
374
|
-
transition: background 0.2s ease;
|
|
386
|
+
transition: background 0.2s ease, transform 0.2s ease;
|
|
375
387
|
|
|
376
388
|
&:hover {
|
|
377
|
-
background:
|
|
389
|
+
background: #f1f5f9 !important;
|
|
390
|
+
transform: scale(1.05);
|
|
378
391
|
}
|
|
379
392
|
|
|
380
393
|
svg {
|
|
381
|
-
fill: #
|
|
394
|
+
fill: #f37a20 !important;
|
|
382
395
|
}
|
|
383
396
|
|
|
384
397
|
/* remove ml-md inside so it centers */
|
|
@@ -406,6 +419,7 @@
|
|
|
406
419
|
@screen dt {
|
|
407
420
|
.HomePageWrapper {
|
|
408
421
|
width: 100%;
|
|
422
|
+
|
|
409
423
|
.BannerWithSearch {
|
|
410
424
|
margin-bottom: 56px;
|
|
411
425
|
width: 100% !important;
|
|
@@ -439,16 +453,13 @@
|
|
|
439
453
|
/* Smoother curve on desktop */
|
|
440
454
|
}
|
|
441
455
|
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
left: calc(15.8rem + 40px);
|
|
445
|
-
/* Align slightly right of back button */
|
|
446
|
-
font-size: 38px;
|
|
456
|
+
.moduleTitle {
|
|
457
|
+
bottom: 50px !important;
|
|
447
458
|
}
|
|
448
459
|
|
|
449
460
|
.moduleLinkHomePageBackButton {
|
|
450
|
-
top:
|
|
451
|
-
left:
|
|
461
|
+
top: 35px !important;
|
|
462
|
+
left: 16px !important;
|
|
452
463
|
}
|
|
453
464
|
}
|
|
454
465
|
|
|
@@ -456,4 +467,4 @@
|
|
|
456
467
|
width: 100%;
|
|
457
468
|
padding: 0 2rem;
|
|
458
469
|
}
|
|
459
|
-
}
|
|
470
|
+
}
|
|
@@ -298,13 +298,6 @@
|
|
|
298
298
|
font-size: 16px;
|
|
299
299
|
}
|
|
300
300
|
|
|
301
|
-
.ekyc-application-link {
|
|
302
|
-
font-size: 16px;
|
|
303
|
-
cursor: pointer;
|
|
304
|
-
font-weight: 600;
|
|
305
|
-
color: #318ed0 !important;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
301
|
/* SearchConsumer Styles */
|
|
309
302
|
.search-consumer-wrapper {
|
|
310
303
|
background: #f5f7fa;
|
|
@@ -1021,10 +1014,23 @@
|
|
|
1021
1014
|
}
|
|
1022
1015
|
}
|
|
1023
1016
|
|
|
1024
|
-
.ekyc-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1017
|
+
.ekyc-status-tag {
|
|
1018
|
+
padding: 2px 12px;
|
|
1019
|
+
border-radius: 100px;
|
|
1020
|
+
&.SUBMITTED {
|
|
1021
|
+
background-color: #fef3c7;
|
|
1022
|
+
color: #b45309;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
&.APPROVED {
|
|
1026
|
+
background-color: #d0f0d5;
|
|
1027
|
+
color: #0b6623;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
&.REJECTED {
|
|
1031
|
+
background-color: #fdecea;
|
|
1032
|
+
color: #b42318;
|
|
1033
|
+
}
|
|
1028
1034
|
}
|
|
1029
1035
|
|
|
1030
1036
|
.status-search-composer-wrapper {
|
|
@@ -1052,4 +1058,3 @@
|
|
|
1052
1058
|
background: transparent;
|
|
1053
1059
|
}
|
|
1054
1060
|
}
|
|
1055
|
-
|
|
@@ -822,42 +822,6 @@
|
|
|
822
822
|
}
|
|
823
823
|
}
|
|
824
824
|
|
|
825
|
-
.registryTable {
|
|
826
|
-
tHead {
|
|
827
|
-
tr {
|
|
828
|
-
th {
|
|
829
|
-
text-align: center;
|
|
830
|
-
.col-head-wrapper {
|
|
831
|
-
display: flex;
|
|
832
|
-
gap: 4px;
|
|
833
|
-
align-items: center;
|
|
834
|
-
.col-head {
|
|
835
|
-
font-size: 11px;
|
|
836
|
-
font-weight: 700;
|
|
837
|
-
text-transform: uppercase;
|
|
838
|
-
letter-spacing: 0.07em;
|
|
839
|
-
transition: color 0.15s;
|
|
840
|
-
}
|
|
841
|
-
.col-head.accentDark {
|
|
842
|
-
color: #5282e6;
|
|
843
|
-
}
|
|
844
|
-
.col-head.textSecondary {
|
|
845
|
-
color: #475569;
|
|
846
|
-
}
|
|
847
|
-
}
|
|
848
|
-
}
|
|
849
|
-
}
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
tBody {
|
|
853
|
-
tr {
|
|
854
|
-
td {
|
|
855
|
-
text-align: center;
|
|
856
|
-
}
|
|
857
|
-
}
|
|
858
|
-
}
|
|
859
|
-
}
|
|
860
|
-
|
|
861
825
|
.col-head-wrapper {
|
|
862
826
|
display: flex;
|
|
863
827
|
gap: 4px;
|