_icon.scss 440 B

1234567891011121314151617181920212223242526272829
  1. ///
  2. /// Paradigm Shift by HTML5 UP
  3. /// html5up.net | @ajlkn
  4. /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  5. ///
  6. /* Icon */
  7. .icon {
  8. @include icon;
  9. border-bottom: none;
  10. position: relative;
  11. > .label {
  12. display: none;
  13. }
  14. &.solid {
  15. &:before {
  16. font-weight: 900;
  17. }
  18. }
  19. &.brands {
  20. &:before {
  21. font-family: 'Font Awesome 5 Brands';
  22. }
  23. }
  24. }