adding some padding to form text inputs w/ burnettk
This commit is contained in:
parent
01a95011ad
commit
2d76a39365
|
@ -106,7 +106,7 @@ export default function BaseInputTemplate<
|
||||||
<TextInput
|
<TextInput
|
||||||
id={id}
|
id={id}
|
||||||
name={id}
|
name={id}
|
||||||
className="input"
|
className="text-input"
|
||||||
helperText={helperText}
|
helperText={helperText}
|
||||||
invalid={invalid}
|
invalid={invalid}
|
||||||
invalidText={errorMessageForField}
|
invalidText={errorMessageForField}
|
||||||
|
|
|
@ -72,7 +72,7 @@ function TextareaWidget<
|
||||||
<TextArea
|
<TextArea
|
||||||
id={id}
|
id={id}
|
||||||
name={id}
|
name={id}
|
||||||
className="form-control"
|
className="text-input"
|
||||||
value={value || ''}
|
value={value || ''}
|
||||||
labelText=""
|
labelText=""
|
||||||
placeholder={placeholder}
|
placeholder={placeholder}
|
||||||
|
|
|
@ -21,3 +21,7 @@
|
||||||
.array-item-toolbox {
|
.array-item-toolbox {
|
||||||
margin-left: 2em;
|
margin-left: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rjsf .text-input {
|
||||||
|
padding-top: 8px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue