_social.scss 817 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. $apps: (
  2. "apple",
  3. "discord",
  4. "dribbble",
  5. "facebook",
  6. "figma",
  7. "github",
  8. "google",
  9. "instagram",
  10. "linkedin",
  11. "medium",
  12. "meta",
  13. "metamask",
  14. "pinterest",
  15. "reddit",
  16. "signal",
  17. "skype",
  18. "snapchat",
  19. "spotify",
  20. "telegram",
  21. "tiktok",
  22. "tumblr",
  23. "twitch",
  24. "vk",
  25. "x",
  26. "youtube"
  27. );
  28. .social {
  29. position: relative;
  30. display: inline-block;
  31. height: $avatar-size;
  32. aspect-ratio: 1;
  33. background: no-repeat center/cover;
  34. vertical-align: bottom;
  35. }
  36. @each $app in $apps {
  37. .social-app-#{$app} {
  38. background-image: url("#{$assets-base}/img/social/#{$app}.svg");
  39. &.social-gray {
  40. background-image: url("#{$assets-base}/img/social/#{$app}-gray.svg");
  41. }
  42. }
  43. }
  44. @each $flag-size, $size in $flag-sizes {
  45. .social-#{$flag-size} {
  46. height: map-get($size, size);
  47. }
  48. }