mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 17:18:21 -05:00
16 lines
201 B
SCSS
16 lines
201 B
SCSS
|
@charset "UTF-8";
|
||
|
|
||
|
@if $border-box-sizing == true {
|
||
|
html { // http://bit.ly/1qk2tVR
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
* {
|
||
|
&,
|
||
|
&::after,
|
||
|
&::before {
|
||
|
box-sizing: inherit;
|
||
|
}
|
||
|
}
|
||
|
}
|