Replace node-sass with sass (#138)

This commit is contained in:
Miroslav Šedivý
2022-01-29 14:25:01 +01:00
committed by GitHub
parent 2cc6df22d1
commit 58509cbfc9
3 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
// Variables
@use "sass:math";
$fa-font-path: "~@fortawesome/fontawesome-free/webfonts";
$fa-font-size-base: 16px;
$fa-font-display: auto;
@ -7,7 +9,7 @@ $fa-css-prefix: fa;
$fa-border-color: #eee;
$fa-inverse: #fff;
$fa-li-width: 2em;
$fa-fw-width: (20em / 16);
$fa-fw-width: math.div(20em, 16);
$fa-primary-opacity: 1;
$fa-secondary-opacity: .4;