@djb25/digit-ui-css 1.0.48 → 1.0.50
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/SearchForm.scss +5 -0
- package/src/components/financeUi.scss +1 -13
- package/src/components/moduleHeader.scss +8 -2
- package/src/pages/citizen/Register.scss +1 -1
- package/src/pages/employee/ekyc.scss +724 -7
- package/src/pages/employee/inbox.scss +12 -0
- package/src/pages/employee/index.scss +4 -0
package/package.json
CHANGED
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
@media (min-width: 780px) {
|
|
51
51
|
.search-form-wrapper {
|
|
52
|
+
display: flex;
|
|
52
53
|
.pt-form-field {
|
|
53
54
|
width: 30% !important;
|
|
54
55
|
margin-bottom: 20px;
|
|
@@ -580,6 +581,10 @@
|
|
|
580
581
|
color: #444;
|
|
581
582
|
background: #fff;
|
|
582
583
|
padding: 15px;
|
|
584
|
+
display: flex;
|
|
585
|
+
flex-direction: column;
|
|
586
|
+
gap: 16px;
|
|
587
|
+
border-radius: 0 0 12px 12px;
|
|
583
588
|
}
|
|
584
589
|
|
|
585
590
|
.finance-breadcrumb {
|
|
@@ -459,18 +459,10 @@
|
|
|
459
459
|
display: inline-block;
|
|
460
460
|
transition: transform 0.3s ease;
|
|
461
461
|
}
|
|
462
|
-
|
|
463
|
-
.collapsible-card-arrow.open {
|
|
462
|
+
w .collapsible-card-arrow.open {
|
|
464
463
|
transform: rotate(180deg);
|
|
465
464
|
}
|
|
466
465
|
|
|
467
|
-
.collapsible-card-body {
|
|
468
|
-
font-size: 14px;
|
|
469
|
-
color: #444;
|
|
470
|
-
background: #fff;
|
|
471
|
-
padding: 15px;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
466
|
.finance-breadcrumb {
|
|
475
467
|
background-color: transparent;
|
|
476
468
|
padding: 0;
|
|
@@ -692,10 +684,6 @@
|
|
|
692
684
|
width: 14px;
|
|
693
685
|
height: 14px;
|
|
694
686
|
}
|
|
695
|
-
|
|
696
|
-
.collapsible-card-body {
|
|
697
|
-
padding: 15px;
|
|
698
|
-
}
|
|
699
687
|
}
|
|
700
688
|
|
|
701
689
|
.collapsible-card-tabs {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
.header-top-section {
|
|
10
10
|
width: 100%;
|
|
11
|
-
background: linear-gradient(135deg
|
|
11
|
+
background: linear-gradient(135deg, #1a67a3, #5282e6 40%, #5495fe);
|
|
12
12
|
padding: 30px 50px;
|
|
13
13
|
border-radius: 11px;
|
|
14
14
|
margin-inline: 42px;
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
|
|
42
42
|
.header-bottom-section {
|
|
43
43
|
width: 100%;
|
|
44
|
-
background: linear-gradient(135deg
|
|
44
|
+
background: linear-gradient(135deg, #1a67a3, #5282e6 40%, #5495fe);
|
|
45
45
|
padding: 5px 20px;
|
|
46
46
|
border-radius: 11px;
|
|
47
47
|
position: relative;
|
|
@@ -104,6 +104,12 @@
|
|
|
104
104
|
width: 100%;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
.bread-crumb-item {
|
|
108
|
+
display: flex;
|
|
109
|
+
justify-content: center;
|
|
110
|
+
align-items: center;
|
|
111
|
+
}
|
|
112
|
+
|
|
107
113
|
.left-section {
|
|
108
114
|
display: flex;
|
|
109
115
|
gap: 10px;
|