chore: add Font Awesome 6 icon library

This commit is contained in:
ahp
2026-08-25 21:08:45 +03:30
parent ba23605bca
commit 09fd409a23
2126 changed files with 371878 additions and 0 deletions
+16
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);
}
}