mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
902281294f
support for a browser sync task as well for easier development
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);
|
|
}
|
|
}
|