Files
plyr/demo/src/sass/lib/reset.scss
2017-12-20 15:14:05 +00:00

12 lines
308 B
SCSS

// ==========================================================================
// Resets
// ==========================================================================
// BORDER-BOX ALL THE THINGS!
// http://paulirish.com/2012/box-sizing-border-box-ftw/
*,
*::after,
*::before {
box-sizing: border-box;
}