When .row is assigned to a non block HTML element, bootstrap grid will not behave properly. To fix this properly this line has to be added
ng-form { display: block; }
Took me a while to figure out why there is unnecessary paddings on my form-group and the strange responsive behavior. I believe this thing should work out-of-the-box.
When
.row
is assigned to a non block HTML element, bootstrap grid will not behave properly. To fix this properly this line has to be addedTook me a while to figure out why there is unnecessary paddings on my
form-group
and the strange responsive behavior. I believe this thing should work out-of-the-box.