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
|
||||
id={id}
|
||||
name={id}
|
||||
className="input"
|
||||
className="text-input"
|
||||
helperText={helperText}
|
||||
invalid={invalid}
|
||||
invalidText={errorMessageForField}
|
||||
|
|
|
@ -72,7 +72,7 @@ function TextareaWidget<
|
|||
<TextArea
|
||||
id={id}
|
||||
name={id}
|
||||
className="form-control"
|
||||
className="text-input"
|
||||
value={value || ''}
|
||||
labelText=""
|
||||
placeholder={placeholder}
|
||||
|
|
|
@ -21,3 +21,7 @@
|
|||
.array-item-toolbox {
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
.rjsf .text-input {
|
||||
padding-top: 8px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue