James Peret's blog. Built with Jekyll and the Mikey theme.

_scaffolding.scss 395B

12345678910111213141516171819202122
  1. //
  2. // Scaffolding
  3. // --------------------------------------------------
  4. // Reset the box-sizing
  5. //
  6. // Heads up! This reset may cause conflicts with some third-party widgets.
  7. // For recommendations on resolving such conflicts, see
  8. // http://getbootstrap.com/getting-started/#third-box-sizing
  9. * {
  10. @include box-sizing(border-box);
  11. }
  12. *:before,
  13. *:after {
  14. @include box-sizing(border-box);
  15. }