papercss/src/boxreset.scss
2017-12-18 23:23:30 +01:00

8 lines
181 B
SCSS

// 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;
}