Sha256: 5ed09484c7d5f1c4a84578ca31dc0c9d46bb898c7854aae2b45e4c0831318319
Contents?: true
Size: 747 Bytes
Versions: 54
Compression:
Stored size: 747 Bytes
Contents
/*------------------------------------*\ #BOX-SIZING \*------------------------------------*/ /** * Set the global `box-sizing` state to `border-box`. * * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice * paulirish.com/2012/box-sizing-border-box-ftw */ html { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } * { &, &:before, &:after { -webkit-box-sizing: inherit; -moz-box-sizing: inherit; box-sizing: inherit; } } // If we have included this file, set a variable to tell the rest of the // framework that global `box-sizing: border-box` has been set. $inuit-global-border-box: true;
Version data entries
54 entries across 54 versions & 3 rubygems