Refector box sizing to new file

This commit is contained in:
rhyneav 2017-10-14 10:41:07 -04:00
parent 32488a430e
commit 81939906f0
3 changed files with 9 additions and 9 deletions

8
src/boxreset.less Normal file
View file

@ -0,0 +1,8 @@
// Why is box sizing not the default?
// https://www.paulirish.com/2012/box-sizing-border-box-ftw/
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}

View file

View file

@ -1,12 +1,4 @@
// Why is box sizing not the default?
// https://www.paulirish.com/2012/box-sizing-border-box-ftw/
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
@import (less) "./boxreset.less";
@import (less) "../node_modules/normalize.css/normalize.css";
@import (less) "./colors.less";
@import (less) "./fonts.less";