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.scss 799B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. //
  2. // Icon
  3. //
  4. .icon {
  5. width: $icon-size;
  6. height: $icon-size;
  7. i, svg {
  8. font-size: $icon-size - .75;
  9. }
  10. + .icon-text {
  11. padding-left: 1rem;
  12. width: calc(100% - #{$icon-size} - 1);
  13. }
  14. }
  15. // Extra large icons
  16. .icon-xl {
  17. width: $icon-size-xl;
  18. height: $icon-size-xl;
  19. i, svg {
  20. font-size: $icon-size-xl - .75;
  21. }
  22. + .icon-text {
  23. width: calc(100% - $icon-size-xl - 1);
  24. }
  25. }
  26. // Large icons
  27. .icon-lg {
  28. width: $icon-size-lg;
  29. height: $icon-size-lg;
  30. i, svg {
  31. font-size: $icon-size-lg - .75;
  32. }
  33. + .icon-text {
  34. width: calc(100% - $icon-size-lg - 1);
  35. }
  36. }
  37. // Small icon
  38. .icon-sm {
  39. width: $icon-size-sm;
  40. height: $icon-size-sm;
  41. i, svg {
  42. font-size: $icon-size-sm - .75;
  43. }
  44. + .icon-text {
  45. width: calc(100% - $icon-size-sm - 1);
  46. }
  47. }