/*! * Font Awesome Pro 7.1.0 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license (Commercial License) * Copyright 2025 Fonticons, Inc. */ @use "sass:string"; @use 'variables' as v; @use 'mixins' as m; :root, :host { --#{v.$css-prefix}-family-notdog: 'Font Awesome 7 Notdog'; --#{v.$css-prefix}-font-notdog-solid: normal 900 1em/1 var(--#{v.$css-prefix}-family-notdog); /* deprecated: this older custom property will be removed next major release */ --#{v.$css-prefix}-style-family-notdog: var(--#{v.$css-prefix}-family-notdog); } @font-face { font-family: 'Font Awesome 7 Notdog'; font-style: normal; font-weight: 900; font-display: v.$font-display; src: url('#{v.$font-path}/fa-notdog-solid-900.woff2'); } .fans { --#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-notdog); --#{v.$css-prefix}-style: 900; } .#{v.$css-prefix}-notdog { --#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-notdog); } .#{v.$css-prefix}-solid { --#{v.$css-prefix}-style: 900; } // convenience mixin for declaring pseudo-elements by CSS variable, // including all style-specific font properties and ::before elements. @mixin icon($var) { @include m.fa-icon(Font Awesome 7 Notdog); @extend .#{v.$css-prefix}-solid; @extend .#{v.$css-prefix}-notdog; &::before { content: string.unquote("\"#{ $var }\""); } }