yuche / vue-strap

Bootstrap components built with Vue.js

Home Page:http://yuche.github.io/vue-strap/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Div root element breaks form styling

filipkowal opened this issue · comments

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?