mirror of
https://github.com/tachyons-css/tachyons.git
synced 2026-02-06 13:36:50 +00:00
- New color system - New support for grid - Updated scales - New hover animations - Min width based media queries
13 lines
132 B
CSS
13 lines
132 B
CSS
/*
|
|
|
|
BOX SIZING
|
|
|
|
*/
|
|
|
|
*,
|
|
*::before,
|
|
*::after,
|
|
.border-box { box-sizing: border-box; }
|
|
.content-box { box-sizing: content-box; }
|
|
|