mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-01-15 09:40:27 +08:00
31 lines
484 B
SCSS
31 lines
484 B
SCSS
// List Icons
|
|
// -------------------------
|
|
|
|
%fa-ul {
|
|
padding-left: 0;
|
|
margin-left: $fa-li-width;
|
|
list-style-type: none;
|
|
> li { position: relative; }
|
|
}
|
|
%fa-li {
|
|
position: absolute;
|
|
left: -$fa-li-width;
|
|
width: $fa-li-width;
|
|
top: (2em / 14);
|
|
text-align: center;
|
|
&.#{$fa-css-prefix}-lg {
|
|
left: -$fa-li-width + (4em / 14);
|
|
}
|
|
}
|
|
|
|
@if $fa-show-classes == true {
|
|
|
|
.#{$fa-css-prefix}-ul {
|
|
@extend %fa-ul;
|
|
}
|
|
.#{$fa-css-prefix}-li {
|
|
@extend %fa-li;
|
|
}
|
|
|
|
}
|