24 lines
393 B
SCSS
Raw Normal View History

2016-07-29 10:17:42 +05:30
// Icon Sizes
// -------------------------
2018-07-25 14:34:10 +01:00
// makes the font 33% larger relative to the icon container
2016-07-29 10:17:42 +05:30
.#{$fa-css-prefix}-lg {
font-size: (4em / 3);
line-height: (3em / 4);
2018-07-25 14:34:10 +01:00
vertical-align: -.0667em;
}
.#{$fa-css-prefix}-xs {
font-size: .75em;
}
.#{$fa-css-prefix}-sm {
font-size: .875em;
}
@for $i from 1 through 10 {
.#{$fa-css-prefix}-#{$i}x {
font-size: $i * 1em;
}
2016-07-29 10:17:42 +05:30
}