12 lines
190 B
SCSS
Executable File
12 lines
190 B
SCSS
Executable File
@if $border-box-sizing == true {
|
|
html { // http://bit.ly/1qk2tVR
|
|
@include box-sizing(border-box);
|
|
}
|
|
|
|
* {
|
|
&, &:before, &:after {
|
|
@include box-sizing(inherit);
|
|
}
|
|
}
|
|
}
|