I have found the following code in Bootstrap's css interferes with my Genesis theme's layout - causing widgets to display a little off. Normally it would seem like a padding/margin/width issue. I have disabled the code in boostrap to make the widgets appear correctly, but I want to be able to use the columns/rows from bootstrap in my pages. Is there an easy way to fix this?
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}