blob: 50798b10d7b62b69aa2ab5079367494f1ccb1893 (
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;
}
|