Files
edx-platform/bourbon/css3/_box-sizing.scss
Kyle Fiedler 7e0d9b0d43 Update bourbon
--HG--
branch : kf-refactor-scss
2012-02-14 11:40:23 -05:00

9 lines
208 B
SCSS

@mixin box-sizing ($box) {
// content-box | border-box | inherit
-webkit-box-sizing: $box;
-moz-box-sizing: $box;
-ms-box-sizing: $box;
-o-box-sizing: $box;
box-sizing: $box;
}