_sizing.scss 350 B

123456789101112131415161718
  1. // sizing icons
  2. // -------------------------
  3. @use 'variables' as v;
  4. @use 'mixins' as m;
  5. // literal magnification scale
  6. @for $i from 1 through 10 {
  7. .#{v.$css-prefix}-#{$i}x {
  8. font-size: $i * 1em;
  9. }
  10. }
  11. // step-based scale (with alignment)
  12. @each $size, $value in v.$sizes {
  13. .#{v.$css-prefix}-#{$size} {
  14. @include m.fa-size($value);
  15. }
  16. }