After reading this post: Using box-sizing : border-box with Twitter Bootstrap 2.x, can we do it easily without breaking everything?
I've decided I want to try out box-sizing with a sass repo I've downloaded here: https://github.com/thomas-mcdonald/bootstrap-sass.
I've tried adding the following:
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
This works great, but it screws up my input forms height. Reading the above post comments on using box-sizing content on input forms. But obviously this is in less not sass:
*, *:before, *:after {
.box-sizing(border-box);
}
input {
.box-sizing(content-box);
}
Would anyone know how to get this working so my input forms are being squished?