added some padding above the radio button group on rjsf forms w/ burnettk (#1431)
Co-authored-by: jasquat <jasquat@users.noreply.github.com>
This commit is contained in:
parent
5ba5727eec
commit
a59f2777cd
|
@ -61,6 +61,7 @@ function RadioWidget({
|
|||
onBlur={_onBlur}
|
||||
onFocus={_onFocus}
|
||||
orientation={row ? 'horizontal' : 'vertical'}
|
||||
className="radio-button-group"
|
||||
>
|
||||
{Array.isArray(enumOptions) &&
|
||||
enumOptions.map((option) => {
|
||||
|
|
|
@ -122,3 +122,7 @@
|
|||
/* justify-content: center; */
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.rjsf .radio-button-group {
|
||||
padding-top: 0.5rem;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue