vue-strap
vue-strap copied to clipboard
Div root element breaks form styling
In the date input there is such structure:
div > input.form-control
It breaks bootstrap form's styling, because .form-control
should be a direct child of form-group
.
The correct structure would then be .form-group > input.form-control
, so input.form-control
should be component's root element.
Could you fix this, please?