_box-sizing.scss 152 Bytes
Newer Older
Matthew Mongeau committed
1 2 3 4 5 6
@mixin box-sizing ($box) {
//  content-box | border-box | inherit
  -webkit-box-sizing: $box;
     -moz-box-sizing: $box;
          box-sizing: $box;
}