Merge server folder to root

This commit is contained in:
Jackzie 2025-04-16 15:58:30 -05:00
parent 7de75a582a
commit f921f47529
4418 changed files with 25524 additions and 3 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);
}
}