22803dc6d8
Add static instances of FontAwesome, Bootstrap, and theme resources to more fully move to NPM/Browserify package management. Change-Id: I4ceb0cd44f1e54207fde9c6645931e3a29705894
20 lines
378 B
SCSS
20 lines
378 B
SCSS
// List Icons
|
|
// -------------------------
|
|
|
|
.#{$fa-css-prefix}-ul {
|
|
padding-left: 0;
|
|
margin-left: $fa-li-width;
|
|
list-style-type: none;
|
|
> li { position: relative; }
|
|
}
|
|
.#{$fa-css-prefix}-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);
|
|
}
|
|
}
|