No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_icon-shape.scss 481B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // Icon shape
  3. //
  4. .icon-shape {
  5. padding: 12px;
  6. text-align: center;
  7. display: inline-flex;
  8. align-items: center;
  9. justify-content: center;
  10. border-radius: 50%;
  11. i, svg {
  12. font-size: 1.25rem;
  13. }
  14. &.icon-lg {
  15. i, svg {
  16. font-size: 1.625rem;
  17. }
  18. }
  19. &.icon-sm {
  20. i, svg {
  21. font-size: .875rem;
  22. }
  23. }
  24. svg {
  25. width: 30px;
  26. height: 30px;
  27. }
  28. }
  29. @each $color, $value in $theme-colors {
  30. .icon-shape-#{$color} {
  31. @include icon-shape-variant(theme-color($color));
  32. }
  33. }