Started the project

This commit is contained in:
thatscringebro
2023-03-17 21:20:24 -04:00
parent e46739bdd4
commit 4960271bf0
2154 changed files with 247689 additions and 0 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);
}
}