Sha256: 0a633b1e8d31c4956226003b766833d509094f995162fd81ad50bb2f17e14204
Contents?: true
Size: 394 Bytes
Versions: 9
Compression:
Stored size: 394 Bytes
Contents
// Typography mixins // Fonts in rems with px fallback @mixin font-size($size, $is-important: false) { $size: if(unitless($size), $size, $size / 1px); @if $is-important { font-size: $size + px !important; font-size: ($size / strip-units($base-font-size)) + rem !important; } @else { font-size: $size + px; font-size: ($size / strip-units($base-font-size)) + rem; } }
Version data entries
9 entries across 9 versions & 1 rubygems