You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
350 B
SCSS
19 lines
350 B
SCSS
|
3 months ago
|
// sizing icons
|
||
|
|
// -------------------------
|
||
|
|
@use 'variables' as v;
|
||
|
|
@use 'mixins' as m;
|
||
|
|
|
||
|
|
// literal magnification scale
|
||
|
|
@for $i from 1 through 10 {
|
||
|
|
.#{v.$css-prefix}-#{$i}x {
|
||
|
|
font-size: $i * 1em;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// step-based scale (with alignment)
|
||
|
|
@each $size, $value in v.$sizes {
|
||
|
|
.#{v.$css-prefix}-#{$size} {
|
||
|
|
@include m.fa-size($value);
|
||
|
|
}
|
||
|
|
}
|