Add font support, start support for genres.

This commit is contained in:
Cody Cook 2024-04-29 23:27:28 -07:00
commit 9a3d58fc83
2142 changed files with 373269 additions and 29 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);
}
}