32 lines
492 B
SCSS
Raw Normal View History

2016-07-29 10:17:42 +05:30
// Stacked Icons
// -------------------------
.#{$fa-css-prefix}-stack {
display: inline-block;
height: 2em;
line-height: 2em;
2018-07-25 14:34:10 +01:00
position: relative;
2016-07-29 10:17:42 +05:30
vertical-align: middle;
2018-07-25 14:34:10 +01:00
width: 2em;
2016-07-29 10:17:42 +05:30
}
2018-07-25 14:34:10 +01:00
.#{$fa-css-prefix}-stack-1x,
.#{$fa-css-prefix}-stack-2x {
2016-07-29 10:17:42 +05:30
left: 0;
2018-07-25 14:34:10 +01:00
position: absolute;
2016-07-29 10:17:42 +05:30
text-align: center;
2018-07-25 14:34:10 +01:00
width: 100%;
}
.#{$fa-css-prefix}-stack-1x {
line-height: inherit;
}
.#{$fa-css-prefix}-stack-2x {
font-size: 2em;
}
.#{$fa-css-prefix}-inverse {
color: $fa-inverse;
2016-07-29 10:17:42 +05:30
}