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>
16 lines
308 B
SCSS
Generated
16 lines
308 B
SCSS
Generated
// sizing icons
|
|
// -------------------------
|
|
|
|
// literal magnification scale
|
|
@for $i from 1 through 10 {
|
|
.#{$fa-css-prefix}-#{$i}x {
|
|
font-size: $i * 1em;
|
|
}
|
|
}
|
|
|
|
// step-based scale (with alignment)
|
|
@each $size, $value in $fa-sizes {
|
|
.#{$fa-css-prefix}-#{$size} {
|
|
@include fa-size($value);
|
|
}
|
|
}
|