* use @xarc/xrun to streamline tasks in an imperative manner * add lint-staged/husky for git hook tasks * run prettier across all files * fixing tests * add ci test workflow * add a ci workflow * remove precommit in favor of husky * add .prettierrc.js * reformat with prettier
22 lines
383 B
Plaintext
22 lines
383 B
Plaintext
// 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));
|
|
}
|
|
}
|