mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-04-04 15:49:13 +08:00
Fixed slash as a division SASS breaking change
This commit is contained in:
parent
7cbd7f9951
commit
7ec0a9065c
@ -2,9 +2,11 @@
|
|||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
// makes the font 33% larger relative to the icon container
|
// makes the font 33% larger relative to the icon container
|
||||||
|
@use "sass:math";
|
||||||
|
|
||||||
.#{$fa-css-prefix}-lg {
|
.#{$fa-css-prefix}-lg {
|
||||||
font-size: (4em / 3);
|
font-size: math.div(4em, 3);
|
||||||
line-height: (3em / 4);
|
line-height: (3em * 0.25);
|
||||||
vertical-align: -.0667em;
|
vertical-align: -.0667em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
.#{$fa-css-prefix}-ul {
|
.#{$fa-css-prefix}-ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin-left: $fa-li-width * 5/4;
|
margin-left: $fa-li-width * 5*0.25;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
||||||
> li { position: relative; }
|
> li { position: relative; }
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
// Variables
|
// Variables
|
||||||
// --------------------------
|
// --------------------------
|
||||||
|
|
||||||
|
@use "sass:math";
|
||||||
|
|
||||||
$fa-font-path: "../webfonts" !default;
|
$fa-font-path: "../webfonts" !default;
|
||||||
$fa-font-size-base: 16px !default;
|
$fa-font-size-base: 16px !default;
|
||||||
$fa-font-display: block !default;
|
$fa-font-display: block !default;
|
||||||
@ -9,7 +11,7 @@ $fa-version: "5.15.4" !default;
|
|||||||
$fa-border-color: #eee !default;
|
$fa-border-color: #eee !default;
|
||||||
$fa-inverse: #fff !default;
|
$fa-inverse: #fff !default;
|
||||||
$fa-li-width: 2em !default;
|
$fa-li-width: 2em !default;
|
||||||
$fa-fw-width: (20em / 16);
|
$fa-fw-width: math.div(20em, 16);
|
||||||
$fa-primary-opacity: 1 !default;
|
$fa-primary-opacity: 1 !default;
|
||||||
$fa-secondary-opacity: .4 !default;
|
$fa-secondary-opacity: .4 !default;
|
||||||
|
|
||||||
|
@ -2,9 +2,11 @@
|
|||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
// makes the font 33% larger relative to the icon container
|
// makes the font 33% larger relative to the icon container
|
||||||
|
@use "sass:math";
|
||||||
|
|
||||||
.#{$fa-css-prefix}-lg {
|
.#{$fa-css-prefix}-lg {
|
||||||
font-size: (4em / 3);
|
font-size: math.div(4em, 3);
|
||||||
line-height: (3em / 4);
|
line-height: (3em * 0.25);
|
||||||
vertical-align: -.0667em;
|
vertical-align: -.0667em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
.#{$fa-css-prefix}-ul {
|
.#{$fa-css-prefix}-ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin-left: $fa-li-width * 5/4;
|
margin-left: $fa-li-width * 5*0.25;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
||||||
> li { position: relative; }
|
> li { position: relative; }
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
// Variables
|
// Variables
|
||||||
// --------------------------
|
// --------------------------
|
||||||
|
|
||||||
|
@use "sass:math";
|
||||||
|
|
||||||
$fa-font-path: "../webfonts" !default;
|
$fa-font-path: "../webfonts" !default;
|
||||||
$fa-font-size-base: 16px !default;
|
$fa-font-size-base: 16px !default;
|
||||||
$fa-font-display: block !default;
|
$fa-font-display: block !default;
|
||||||
@ -9,7 +11,7 @@ $fa-version: "5.15.4" !default;
|
|||||||
$fa-border-color: #eee !default;
|
$fa-border-color: #eee !default;
|
||||||
$fa-inverse: #fff !default;
|
$fa-inverse: #fff !default;
|
||||||
$fa-li-width: 2em !default;
|
$fa-li-width: 2em !default;
|
||||||
$fa-fw-width: (20em / 16);
|
$fa-fw-width: math.div(20em, 16);
|
||||||
$fa-primary-opacity: 1 !default;
|
$fa-primary-opacity: 1 !default;
|
||||||
$fa-secondary-opacity: .4 !default;
|
$fa-secondary-opacity: .4 !default;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user