draft-components 4.9.0 → 4.9.1
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/css/draft-components.css
CHANGED
|
@@ -4232,7 +4232,8 @@
|
|
|
4232
4232
|
}
|
|
4233
4233
|
|
|
4234
4234
|
.dc-form-field {
|
|
4235
|
-
display:
|
|
4235
|
+
display: grid;
|
|
4236
|
+
justify-items: start;
|
|
4236
4237
|
min-width: 0;
|
|
4237
4238
|
text-align: left;
|
|
4238
4239
|
color-scheme: light;
|
|
@@ -4242,6 +4243,12 @@
|
|
|
4242
4243
|
margin-bottom: 4px;
|
|
4243
4244
|
}
|
|
4244
4245
|
|
|
4246
|
+
.dc-form-field__input,
|
|
4247
|
+
.dc-form-field__error,
|
|
4248
|
+
.dc-form-field__hint {
|
|
4249
|
+
width: 100%;
|
|
4250
|
+
}
|
|
4251
|
+
|
|
4245
4252
|
.dc-form-field__error,
|
|
4246
4253
|
.dc-form-field__hint {
|
|
4247
4254
|
display: block;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.dc-form-field {
|
|
2
|
-
display:
|
|
2
|
+
display: grid;
|
|
3
|
+
justify-items: start;
|
|
3
4
|
min-width: 0;
|
|
4
5
|
text-align: left;
|
|
5
6
|
color-scheme: light;
|
|
@@ -9,6 +10,12 @@
|
|
|
9
10
|
margin-bottom: 4px;
|
|
10
11
|
}
|
|
11
12
|
|
|
13
|
+
.dc-form-field__input,
|
|
14
|
+
.dc-form-field__error,
|
|
15
|
+
.dc-form-field__hint {
|
|
16
|
+
width: 100%;
|
|
17
|
+
}
|
|
18
|
+
|
|
12
19
|
.dc-form-field__error,
|
|
13
20
|
.dc-form-field__hint {
|
|
14
21
|
display: block;
|