11 lines
256 B
Sass
11 lines
256 B
Sass
@import shared
|
|
|
|
// Change the box model for Mozilla, Webkit, IE8 and the future
|
|
//
|
|
// @param $bs
|
|
// [ content-box | border-box ]
|
|
|
|
=box-sizing($bs)
|
|
$bs: unquote($bs)
|
|
+experimental(box-sizing, $bs, -moz, -webkit, not -o, not -ms, not -khtml, official)
|