gcanti / tcomb-form

Forms library for react
https://gcanti.github.io/tcomb-form
MIT License
1.16k stars 136 forks source link

Fields are wrapped in a form-group #215

Closed kryogenic closed 8 years ago

kryogenic commented 8 years ago

tcomb-form boxes all the input elements in a .form-group causing 15px of un-needed margin between the input and submit button.

Compare the bootstrap examples to the tcomb-form playground example.

Note: this can be easily solved using the following css:

.form-group-depth-0 {
  margin-bottom: 0;
}
gcanti commented 8 years ago

Hi @kryogenic, Thanks for pointing out, I'm trying to amend this defect

gcanti commented 8 years ago

Released in v0.6.7 and v0.7.3

kryogenic commented 8 years ago

thanks!

gcanti commented 8 years ago

Let me know if everything's ok ;-)

kryogenic commented 8 years ago

working good over here, seems you removed form-group-depth-0 completely