Sha256: 7b79491d7f2c97100deb1bfaef4e3c316dfdd5b57df15f069d45784450c0fbeb

Contents?: true

Size: 295 Bytes

Versions: 2

Compression:

Stored size: 295 Bytes

Contents

  // Font size mixin to include px and rem

  @mixin font-size($size, $is-important: false) {
    @if $is-important {
      font-size: $size + px !important;
      font-size: ($size / 10) + rem !important;
    } @else {
      font-size: $size + px;
      font-size: ($size / 10) + rem;
    }
  }

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zurb-foundation-3.0.7 stylesheets/foundation/mixins/_font-size.scss
zurb-foundation-3.0.7.rc10 stylesheets/foundation/mixins/_font-size.scss