The passed in style only applies to the internal input element, which is wrapped in 3 layers of divs (col, wrapper, relative).
For example I try to put two inputs horizontally in a small space, and even though I specify the correct size to the Input component, the inner divs and input ignore that and there is no way to change that.
One possible solution is to add another prop so that the outermost div can be styled and the inner divs follow that.
The passed in style only applies to the internal
input
element, which is wrapped in 3 layers of divs (col
,wrapper
,relative
).For example I try to put two inputs horizontally in a small space, and even though I specify the correct size to the
Input
component, the innerdiv
s andinput
ignore that and there is no way to change that.One possible solution is to add another prop so that the outermost
div
can be styled and the innerdiv
s follow that.