Sha256: 62889cf550eaef34193aca1efe195d84829dcac40c5b6441270c0e56d972df18

Contents?: true

Size: 410 Bytes

Versions: 4

Compression:

Stored size: 410 Bytes

Contents

@mixin font-smoothing($value: on) {
  @if $value == on {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  } @else {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
  }
}

@mixin icon-fa($content) {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: fa-content($content);
}

@mixin sr-only {
  @include visually-hidden;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
trestle-0.10.1 frontend/css/core/_mixins.scss
trestle-0.10.0 frontend/css/core/_mixins.scss
trestle-0.10.0.pre2 frontend/css/core/_mixins.scss
trestle-0.10.0.pre frontend/css/core/_mixins.scss