@muziehdesign/components 18.2.0-next.2133 → 18.2.0-next.2145
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 +11 -7
- package/design/_utilities.scss +5 -0
- package/package.json +1 -1
package/design/_form.scss
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.checkbox-label {
|
|
40
|
-
@apply ml-2
|
|
40
|
+
@apply ml-2;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.form {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
.description {
|
|
61
|
-
@apply text-
|
|
61
|
+
@apply text-subtle text-sm;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
.footer {
|
|
@@ -67,11 +67,15 @@
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
.field {
|
|
70
|
-
@apply block py-3
|
|
70
|
+
@apply block py-3;
|
|
71
|
+
}
|
|
71
72
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
.field-option {
|
|
74
|
+
@apply block py-0.5;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.field-instructions {
|
|
78
|
+
@apply text-subtler block mt-1 text-sm;
|
|
75
79
|
}
|
|
76
80
|
|
|
77
81
|
.option-list .field {
|
|
@@ -79,7 +83,7 @@
|
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
.field-label {
|
|
82
|
-
@apply text-subtle font-medium block mb-1;
|
|
86
|
+
@apply text-sm text-subtle font-medium block mb-1;
|
|
83
87
|
}
|
|
84
88
|
|
|
85
89
|
.form-input,
|
package/design/_utilities.scss
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@layer utilities {
|
|
2
2
|
.text-block {
|
|
3
3
|
max-width: var(--text-block-width, 90ch);
|
|
4
|
+
word-break: break-all;
|
|
4
5
|
}
|
|
5
6
|
|
|
6
7
|
.text-subtle {
|
|
@@ -10,4 +11,8 @@
|
|
|
10
11
|
.text-subtler {
|
|
11
12
|
@apply text-gray-600;
|
|
12
13
|
}
|
|
14
|
+
|
|
15
|
+
.text-subtlest {
|
|
16
|
+
@apply text-gray-500;
|
|
17
|
+
}
|
|
13
18
|
}
|