Partially fixes issue #3256 by updating SASS syntax in main SCSS files. To fully address the issue, FontAwesome should be updated to `v7.x` and Tabler to `v3.30` or higher (see Tabler fix [here](https://github.com/tabler/tabler-icons/pull/1256)), where the SCSS has been fixed. --------- Signed-off-by: George Araújo <george.gcac@gmail.com> Co-authored-by: George Araújo <george.gcac@gmail.com>
29 lines
511 B
SCSS
29 lines
511 B
SCSS
// base icon class definition
|
|
// -------------------------
|
|
@use 'variables' as v;
|
|
@use 'mixins' as m;
|
|
|
|
.#{v.$css-prefix}-solid,
|
|
.#{v.$css-prefix}-regular,
|
|
.#{v.$css-prefix}-brands,
|
|
.#{v.$css-prefix}-classic,
|
|
.fas,
|
|
.far,
|
|
.fab,
|
|
.#{v.$css-prefix} {
|
|
@include m.fa-icon();
|
|
}
|
|
|
|
:is(
|
|
.fas,
|
|
.far,
|
|
.fab,
|
|
.#{v.$css-prefix}-solid,
|
|
.#{v.$css-prefix}-regular,
|
|
.#{v.$css-prefix}-brands,
|
|
.#{v.$css-prefix}-classic,
|
|
.fa
|
|
)::before {
|
|
content: var(#{v.$icon-property});
|
|
content: var(#{v.$icon-property})/"";
|
|
} |