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.
17 lines
308 B
SCSS
17 lines
308 B
SCSS
2 years ago
|
// 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);
|
||
|
}
|
||
|
}
|