hugo-theme-introduction/assets/vendor/fontawesome-free/scss/_stacked.scss
Alex Lovell-Troy 5b134ac767
Fixes #357 by upgrading to fontawesome-free 6.3.0 (#358)
* 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>
2023-02-19 09:13:04 -06:00

32 lines
633 B
SCSS
Generated

// stacking icons
// -------------------------
.#{$fa-css-prefix}-stack {
display: inline-block;
height: 2em;
line-height: 2em;
position: relative;
vertical-align: $fa-stack-vertical-align;
width: $fa-stack-width;
}
.#{$fa-css-prefix}-stack-1x,
.#{$fa-css-prefix}-stack-2x {
left: 0;
position: absolute;
text-align: center;
width: 100%;
z-index: var(--#{$fa-css-prefix}-stack-z-index, #{$fa-stack-z-index});
}
.#{$fa-css-prefix}-stack-1x {
line-height: inherit;
}
.#{$fa-css-prefix}-stack-2x {
font-size: 2em;
}
.#{$fa-css-prefix}-inverse {
color: var(--#{$fa-css-prefix}-inverse, #{$fa-inverse});
}