aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/sass/lib/reset.scss
blob: 9d987fe2eece3af29d6c8ecf41165bf80feea7a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// ==========================================================================
// Resets
// ==========================================================================

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