Sha256: 25f5b44082af6d0afe5fbd392cd69b7154a5c7f8af7d85e5f71a49fc68170b03

Contents?: true

Size: 616 Bytes

Versions: 1

Compression:

Stored size: 616 Bytes

Contents

// Table of Contents
// ==================================================
// Font-face

// Font-face
// ==================================================
@each $type, $families in $font-families {
  @each $file-name, $family in $font-available-typography {
    @if index(text-family($type), $family) {
      @each $name, $weight in $font-weights {
        @font-face {
          font-display: swap;
          font-family: $family;
          font-style: normal;
          font-weight: $weight;
          src: url(font-path('#{$file-name}/#{$file-name}-#{$name}.woff')) format('woff');
        }
      }
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_frontend-14.2.0 vendor/assets/stylesheets/blocks/_font.scss