Some checks failed
CI / Check typos (push) Successful in 15s
CI / Check links (push) Failing after 1m37s
CI / Clippy (push) Successful in 3m44s
CI / Build and test (push) Successful in 12m33s
CI / Build container (push) Successful in 10m24s
CI / Deploy on waypoint (push) Successful in 49s
17 lines
308 B
SCSS
17 lines
308 B
SCSS
// 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);
|
|
}
|
|
}
|