mod-base 1.0.24 → 1.0.25
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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/styles/templates/_dark-mode.scss +23 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -235,7 +235,8 @@ $contact-us-blue-light: #8498E7;
|
|
|
235
235
|
|
|
236
236
|
.form-input-group {
|
|
237
237
|
&--includes-label {
|
|
238
|
-
.form-input:focus
|
|
238
|
+
.form-input:focus,
|
|
239
|
+
.form-input:not(:placeholder-shown) {
|
|
239
240
|
~ .form-input-group__icon {
|
|
240
241
|
color: $color-red4;
|
|
241
242
|
}
|
|
@@ -460,6 +461,27 @@ $contact-us-blue-light: #8498E7;
|
|
|
460
461
|
}
|
|
461
462
|
}
|
|
462
463
|
|
|
464
|
+
.loader {
|
|
465
|
+
image {
|
|
466
|
+
filter: invert(1) hue-rotate(180deg) brightness(2);
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
#Circle {
|
|
470
|
+
filter: invert(1);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
#Left-Arrow,
|
|
474
|
+
#Right-Arrow {
|
|
475
|
+
path {
|
|
476
|
+
fill: $color-lavender-500;
|
|
477
|
+
|
|
478
|
+
&:not(:first-of-type) {
|
|
479
|
+
stroke: $color-lavender-500;
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
|
|
463
485
|
/* Need to overwrite inline styles of double submission block */
|
|
464
486
|
.duplicate-submission {
|
|
465
487
|
background-color: $background-color !important;
|