summaryrefslogtreecommitdiff
path: root/www/packages/fontawesome-free-7.2.0-web/scss/solid.scss
diff options
context:
space:
mode:
Diffstat (limited to 'www/packages/fontawesome-free-7.2.0-web/scss/solid.scss')
-rw-r--r--www/packages/fontawesome-free-7.2.0-web/scss/solid.scss51
1 files changed, 0 insertions, 51 deletions
diff --git a/www/packages/fontawesome-free-7.2.0-web/scss/solid.scss b/www/packages/fontawesome-free-7.2.0-web/scss/solid.scss
deleted file mode 100644
index 36b8f99..0000000
--- a/www/packages/fontawesome-free-7.2.0-web/scss/solid.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-/*!
- * Font Awesome Free 7.2.0 by @fontawesome - https://fontawesome.com
- * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
- * Copyright 2026 Fonticons, Inc.
- */
-@use "sass:string";
-@use 'variables' as v;
-@use 'mixins' as m;
-
-:root, :host {
- --#{v.$css-prefix}-family-classic: '#{ v.$family }';
- --#{v.$css-prefix}-font-solid: normal 900 1em/1 var(--#{v.$css-prefix}-family-classic);
-
- /* deprecated: this older custom property will be removed next major release */
- --#{v.$css-prefix}-style-family-classic: var(--#{v.$css-prefix}-family-classic);
-}
-
-
-@font-face {
- font-family: 'Font Awesome 7 Free';
- font-style: normal;
- font-weight: 900;
- font-display: v.$font-display;
- src: url('#{v.$font-path}/fa-solid-900.woff2');
-}
-
-
-.fas {
- --#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-classic);
- --#{v.$css-prefix}-style: 900;
-}
-
-.#{v.$css-prefix}-classic {
- --#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-classic);
-}
-
-.#{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 Free);
- @extend .#{v.$css-prefix}-solid;
- @extend .#{v.$css-prefix}-classic;
-
- &::before {
- content: string.unquote("\"#{ $var }\"");
- }
-}