1
0

first update

This commit is contained in:
2024-03-18 19:59:59 +09:00
parent 40f6d6b8c4
commit b5949bea66
9700 changed files with 692940 additions and 3 deletions

16
dist/css/font-awesome/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);
}
}