Update to Font Awesome 6

This commit is contained in:
Jeremy Thomas
2024-04-17 14:16:12 +01:00
parent fb1dc09095
commit f1fe176dfb
2140 changed files with 396538 additions and 4344 deletions

View File

@@ -0,0 +1,19 @@
// sizing icons
// -------------------------
// literal magnification scale
.sizes-literal(@factor) when (@factor > 0) {
.sizes-literal((@factor - 1));
.@{fa-css-prefix}-@{factor}x {
font-size: (@factor * 1em);
}
}
.sizes-literal(10);
// step-based scale (with alignment)
each(.fa-sizes(), {
.@{fa-css-prefix}-@{key} {
.fa-size(@value);
}
});