@godxjp/ui 13.11.0 → 13.11.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/dist/styles/control.css +5 -1
- package/package.json +1 -1
package/dist/styles/control.css
CHANGED
|
@@ -217,7 +217,11 @@
|
|
|
217
217
|
.ui-choice-group[data-orientation="horizontal"] {
|
|
218
218
|
display: flex;
|
|
219
219
|
flex-wrap: wrap;
|
|
220
|
-
|
|
220
|
+
/* Occupy the control height and centre the row so a horizontal radio/checkbox
|
|
221
|
+
* group lines up with sibling inputs in a horizontal FormField (its options
|
|
222
|
+
* are only ~icon-height tall, which otherwise sat above the field label). */
|
|
223
|
+
align-items: center;
|
|
224
|
+
min-height: var(--control-height);
|
|
221
225
|
column-gap: var(--choice-group-gap-x);
|
|
222
226
|
row-gap: var(--choice-group-gap-y);
|
|
223
227
|
}
|