mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-12 16:29:44 +00:00
5b134ac767
* Fixes #357 by upgrading to fontawesome-free 6.3.0 * Replaced the existing font-awesome files with new ones * Updated references in _variables.scss ro reference theme location * Tweaked social.html to remove redundant css class * Updating netlify.toml to more modern values --------- Co-authored-by: Victoria Drake <24644237+victoriadrake@users.noreply.github.com>
18 lines
447 B
SCSS
Generated
18 lines
447 B
SCSS
Generated
// 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;
|
|
}
|