papercss/src/boxreset.less
2017-10-14 10:41:07 -04:00

8 lines
181 B
Plaintext

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