@djb25/digit-ui-css 1.0.8 → 1.0.9
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 -7
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/checkbox.scss +35 -4
- package/src/index.scss +19 -21
package/package.json
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.custom-checkbox {
|
|
17
|
-
width:
|
|
18
|
-
height:
|
|
17
|
+
width: 25px;
|
|
18
|
+
height: 25px;
|
|
19
19
|
@apply absolute top-0 left-0 border border-solid border-input-border z-0;
|
|
20
20
|
|
|
21
21
|
img {
|
|
@@ -47,7 +47,38 @@
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
.label {
|
|
50
|
-
margin-left:
|
|
51
|
-
|
|
50
|
+
margin-left: 32px;
|
|
51
|
+
top: 3px !important;
|
|
52
|
+
@apply text-form-field text-text-primary relative top-10;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.fsm-citizen-rating-wrapper {
|
|
57
|
+
.card-label:last-of-type {
|
|
58
|
+
margin-top: 24px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.card-label {
|
|
62
|
+
margin-bottom: 24px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.fsm-citizen-rating-wrapper {
|
|
67
|
+
.card-label:last-of-type {
|
|
68
|
+
margin-top: 24px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.card-label {
|
|
72
|
+
margin-bottom: 24px;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.fsm-citizen-rating-wrapper {
|
|
77
|
+
.card-label:last-of-type {
|
|
78
|
+
margin-top: 24px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.card-label {
|
|
82
|
+
margin-bottom: 24px;
|
|
52
83
|
}
|
|
53
84
|
}
|
package/src/index.scss
CHANGED
|
@@ -83,7 +83,6 @@
|
|
|
83
83
|
@import "./components/toggleSwitch.scss";
|
|
84
84
|
@import "./components/plusMinus.scss";
|
|
85
85
|
@import "./components/financeUi.scss";
|
|
86
|
-
@import "./components/landingpage.scss";
|
|
87
86
|
|
|
88
87
|
@import "./pages/employee/index.scss";
|
|
89
88
|
@import "./pages/employee/cardfix.scss";
|
|
@@ -206,12 +205,12 @@ h6 {
|
|
|
206
205
|
margin-bottom: 16px;
|
|
207
206
|
|
|
208
207
|
a {
|
|
209
|
-
color: theme(colors.link.normal);
|
|
208
|
+
color: theme("colors.link.normal");
|
|
210
209
|
}
|
|
211
210
|
}
|
|
212
211
|
|
|
213
212
|
.clear-search-label {
|
|
214
|
-
color: theme(colors.primary.main);
|
|
213
|
+
color: theme("colors.primary.main");
|
|
215
214
|
cursor: pointer;
|
|
216
215
|
}
|
|
217
216
|
|
|
@@ -224,7 +223,7 @@ h6 {
|
|
|
224
223
|
@apply flex justify-between items-center;
|
|
225
224
|
|
|
226
225
|
.download-button {
|
|
227
|
-
color: theme(colors.primary.main);
|
|
226
|
+
color: theme("colors.primary.main");
|
|
228
227
|
margin-left: 8px;
|
|
229
228
|
}
|
|
230
229
|
}
|
|
@@ -233,13 +232,13 @@ h6 {
|
|
|
233
232
|
@apply flex mb-sm;
|
|
234
233
|
|
|
235
234
|
.download-button {
|
|
236
|
-
color: theme(colors.primary.main);
|
|
235
|
+
color: theme("colors.primary.main");
|
|
237
236
|
margin-left: 8px;
|
|
238
237
|
}
|
|
239
238
|
}
|
|
240
239
|
|
|
241
240
|
.check-page-link-button {
|
|
242
|
-
color: theme(colors.primary.main) !important;
|
|
241
|
+
color: theme("colors.primary.main") !important;
|
|
243
242
|
}
|
|
244
243
|
|
|
245
244
|
.pt-application-download-btn {
|
|
@@ -263,10 +262,10 @@ h6 {
|
|
|
263
262
|
gap: 10px;
|
|
264
263
|
|
|
265
264
|
svg {
|
|
266
|
-
fill: theme(colors.primary.main);
|
|
265
|
+
fill: theme("colors.primary.main");
|
|
267
266
|
}
|
|
268
267
|
|
|
269
|
-
color: theme(colors.primary.main);
|
|
268
|
+
color: theme("colors.primary.main");
|
|
270
269
|
|
|
271
270
|
cursor: pointer;
|
|
272
271
|
font-weight: 500;
|
|
@@ -274,14 +273,14 @@ h6 {
|
|
|
274
273
|
}
|
|
275
274
|
|
|
276
275
|
.primaryColor {
|
|
277
|
-
color: theme(colors.text.primary) !important;
|
|
276
|
+
color: theme("colors.text.primary") !important;
|
|
278
277
|
}
|
|
279
278
|
|
|
280
279
|
input[readonly] {
|
|
281
280
|
@apply border-grey-dark !important;
|
|
282
|
-
background-color: theme(digitv2.lightTheme.background);
|
|
283
|
-
border-color: theme(digitv2.lightTheme.text-color-secondary);
|
|
284
|
-
color: theme(digitv2.lightTheme.text-color-secondary);
|
|
281
|
+
background-color: theme("digitv2.lightTheme.background");
|
|
282
|
+
border-color: theme("digitv2.lightTheme.text-color-secondary");
|
|
283
|
+
color: theme("digitv2.lightTheme.text-color-secondary");
|
|
285
284
|
}
|
|
286
285
|
|
|
287
286
|
.hide-input-type-file {
|
|
@@ -322,7 +321,7 @@ input[readonly] {
|
|
|
322
321
|
height: 2.5rem;
|
|
323
322
|
|
|
324
323
|
&__wrapper {
|
|
325
|
-
border: 2px solid theme(colors.text.primary);
|
|
324
|
+
border: 2px solid theme("colors.text.primary");
|
|
326
325
|
padding-left: 16px;
|
|
327
326
|
}
|
|
328
327
|
|
|
@@ -431,7 +430,7 @@ input[type="number"] {
|
|
|
431
430
|
|
|
432
431
|
.cheque-date {
|
|
433
432
|
@apply flex items-center mb-lg;
|
|
434
|
-
border: 2px solid theme(colors.text.primary);
|
|
433
|
+
border: 2px solid theme("colors.text.primary");
|
|
435
434
|
border-radius: 2px;
|
|
436
435
|
|
|
437
436
|
input {
|
|
@@ -456,7 +455,7 @@ input[type="number"] {
|
|
|
456
455
|
|
|
457
456
|
.ifsc-field {
|
|
458
457
|
@apply flex items-center mb-lg;
|
|
459
|
-
border: 2px solid theme(colors.text.primary);
|
|
458
|
+
border: 2px solid theme("colors.text.primary");
|
|
460
459
|
border-radius: 2px;
|
|
461
460
|
|
|
462
461
|
input {
|
|
@@ -586,7 +585,7 @@ input[type="number"] {
|
|
|
586
585
|
padding: 8px 24px;
|
|
587
586
|
color: white;
|
|
588
587
|
cursor: pointer;
|
|
589
|
-
background-color: theme(colors.primary.main);
|
|
588
|
+
background-color: theme("colors.primary.main");
|
|
590
589
|
}
|
|
591
590
|
}
|
|
592
591
|
}
|
|
@@ -633,7 +632,8 @@ input[type="number"] {
|
|
|
633
632
|
}
|
|
634
633
|
}
|
|
635
634
|
|
|
636
|
-
.applications-list-container {
|
|
635
|
+
.applications-list-container {
|
|
636
|
+
}
|
|
637
637
|
|
|
638
638
|
.complaint-summary {
|
|
639
639
|
@media (min-width: 780px) {
|
|
@@ -663,7 +663,6 @@ input[type="number"] {
|
|
|
663
663
|
}
|
|
664
664
|
|
|
665
665
|
@media (min-width: 780px) {
|
|
666
|
-
|
|
667
666
|
.citizen-obps-wrapper,
|
|
668
667
|
.pgr-citizen-wrapper,
|
|
669
668
|
.pt-citizen,
|
|
@@ -690,7 +689,6 @@ input[type="number"] {
|
|
|
690
689
|
}
|
|
691
690
|
|
|
692
691
|
@media only screen and (max-width: 768px) {
|
|
693
|
-
|
|
694
692
|
/* For mobile phones: */
|
|
695
693
|
.error-boundary {
|
|
696
694
|
height: 75vh;
|
|
@@ -777,7 +775,7 @@ input[type="number"] {
|
|
|
777
775
|
.modal-body-ws {
|
|
778
776
|
padding: 1rem;
|
|
779
777
|
font-weight: 700;
|
|
780
|
-
color: theme(colors.text.primary);
|
|
778
|
+
color: theme("colors.text.primary");
|
|
781
779
|
font-size: 24px;
|
|
782
780
|
margin-bottom: 1rem;
|
|
783
781
|
}
|
|
@@ -808,4 +806,4 @@ input[type="number"] {
|
|
|
808
806
|
margin-right: -27%;
|
|
809
807
|
max-height: 120px;
|
|
810
808
|
margin-top: 90px;
|
|
811
|
-
}
|
|
809
|
+
}
|