Some checks failed
CI / Check typos (push) Has been cancelled
CI / Check links (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Build and test (push) Has been cancelled
CI / Build container (push) Has been cancelled
CI / Deploy on waypoint (push) Has been cancelled
19 lines
447 B
SCSS
19 lines
447 B
SCSS
// icons in a list
|
|
// -------------------------
|
|
|
|
.#{$fa-css-prefix}-ul {
|
|
list-style-type: none;
|
|
margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin});
|
|
padding-left: 0;
|
|
|
|
> li { position: relative; }
|
|
}
|
|
|
|
.#{$fa-css-prefix}-li {
|
|
left: calc(var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}) * -1);
|
|
position: absolute;
|
|
text-align: center;
|
|
width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width});
|
|
line-height: inherit;
|
|
}
|