[Automation] Site update: 2025-09-26 13:40:59

This commit is contained in:
2025-09-26 13:41:00 -04:00
commit d56acb90fc
2153 changed files with 378871 additions and 0 deletions

16
fontawesome/scss/_sizing.scss vendored Normal file
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);
}
}