Sha256: 790695eda604cdbf6c1dffa3aaeef2bfaa2a8f9690104424e6cb90c648c27a64
Contents?: true
Size: 484 Bytes
Versions: 6
Compression:
Stored size: 484 Bytes
Contents
// Helpers // ========================================================================== // Return ems from a pixel value // This assumes a base of 19px @function em($px, $base: 19) { @return ($px / $base) + em; } // Hide, but not for screenreaders @mixin visually-hidden { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; } .visually-hidden, .visuallyhidden { @include visually-hidden; }
Version data entries
6 entries across 6 versions & 2 rubygems