Sha256: 7c5de90f97f5d68b3ae8a101631701757c4e50674aa96cae7282ace27e4ac436
Contents?: true
Size: 899 Bytes
Versions: 19
Compression:
Stored size: 899 Bytes
Contents
// ========================================================================== // Typographic hierarchy & rhythm classes // ========================================================================== // Font sizes and proportional line heights as defined in `$type-scale` @include _bp-prefixer(t) { @each $key, $val in $type-scale { &#{$key} { font-size: _rem(map-get($val, size)) !important; line-height: _decimal-ceil(map-get($val, line-height) / map-get($val, size), 3) !important; } } } // Line heights in fixed 10px REM increments @include _bp-prefixer(lh) { @each $key, $val in $rhythm-scale { &#{$key} { line-height: _rem($val) !important; } } } // Line heights in fixed REM increments as defined in `$type-scale` @include _bp-prefixer(tlh) { @each $key, $val in $type-scale { &#{$key} { line-height: _rem(map-get($val, line-height)) !important; } } }
Version data entries
19 entries across 19 versions & 1 rubygems