We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4219771 commit d783ebdCopy full SHA for d783ebd
src/styles/form_field.css
@@ -39,10 +39,14 @@
39
border-bottom-color: var(--color-error);
40
}
41
42
+.form-field input.filled:user-valid {
43
+ border-bottom-color: var(--color-success);
44
+}
45
+
46
.form-field input.filled:user-invalid:not(:focus) {
47
background: linear-gradient(
48
to top,
- rgb(from var(--color-error) r g b / 0.1) 0%,
49
+ rgb(from var(--color-error) r g b / 10%) 0%,
50
transparent 100%
51
);
52
@@ -51,10 +55,6 @@
55
color: var(--color-error);
56
53
57
54
-.form-field input.filled:user-valid {
- border-bottom-color: var(--color-success);
-}
-
58
.form-field input.filled:user-valid + label {
59
color: var(--color-success);
60
0 commit comments