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>
20 lines
720 B
SCSS
Generated
20 lines
720 B
SCSS
Generated
// bordered + pulled icons
|
|
// -------------------------
|
|
|
|
.#{$fa-css-prefix}-border {
|
|
border-color: var(--#{$fa-css-prefix}-border-color, #{$fa-border-color});
|
|
border-radius: var(--#{$fa-css-prefix}-border-radius, #{$fa-border-radius});
|
|
border-style: var(--#{$fa-css-prefix}-border-style, #{$fa-border-style});
|
|
border-width: var(--#{$fa-css-prefix}-border-width, #{$fa-border-width});
|
|
padding: var(--#{$fa-css-prefix}-border-padding, #{$fa-border-padding});
|
|
}
|
|
|
|
.#{$fa-css-prefix}-pull-left {
|
|
float: left;
|
|
margin-right: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
|
}
|
|
|
|
.#{$fa-css-prefix}-pull-right {
|
|
float: right;
|
|
margin-left: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
|
}
|