include fontawesome svgs directly

This commit is contained in:
Ben Charlton 2024-04-14 13:17:07 +01:00
parent 77160a98b4
commit e4ecaceb87
2134 changed files with 372698 additions and 0 deletions

View file

@ -0,0 +1,16 @@
// sizing icons
// -------------------------
// literal magnification scale
@for $i from 1 through 10 {
.#{$fa-css-prefix}-#{$i}x {
font-size: $i * 1em;
}
}
// step-based scale (with alignment)
@each $size, $value in $fa-sizes {
.#{$fa-css-prefix}-#{$size} {
@include fa-size($value);
}
}