Sha256: 351bc4be5165d09f4f5f4d17a343a212d9bec395fa28cae5ba7d6b5898e393f3

Contents?: true

Size: 610 Bytes

Versions: 67

Compression:

Stored size: 610 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: font-url('#{$file-name}/#{$file-name}-#{$name}.woff') format('woff');
        }
      }
    }
  }
}

Version data entries

67 entries across 67 versions & 1 rubygems

Version Path
active_frontend-16.1.1 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.1.0 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.24 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.23 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.22 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.21 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.20 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.19 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.18 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.17 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.16 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.15 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.14 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.13 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.12 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.11 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.10 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.9 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.8 vendor/assets/stylesheets/blocks/_font.scss
active_frontend-16.0.7 vendor/assets/stylesheets/blocks/_font.scss