@muziehdesign/components 18.2.0-beta.2068 → 18.2.0-beta.2072
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/design/_form.scss +3 -3
- package/design/_mixins.scss +1 -0
- package/package.json +1 -1
package/design/_form.scss
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
@use "mixins" as *;
|
2
2
|
|
3
|
+
|
3
4
|
.form-input {
|
4
|
-
|
5
|
+
@include field-control();
|
5
6
|
|
6
7
|
&:focus {
|
7
|
-
|
8
|
-
border-color: var(--color-primary);
|
8
|
+
@include field-control-focused();
|
9
9
|
}
|
10
10
|
}
|
11
11
|
|
package/design/_mixins.scss
CHANGED