Add static

This commit is contained in:
Jackzie 2025-04-14 22:41:28 -05:00
parent 722d21b204
commit fdebc535a0
2152 changed files with 385989 additions and 0 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);
}
});