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.

25 lines
342 B

3 years ago
  1. /**
  2. *
  3. *
  4. *
  5. */
  6. @mixin component__icon()
  7. {
  8. .icon {
  9. display: inline-block;
  10. font-size: inherit;
  11. height: 1.5em;
  12. width: 1.5em;
  13. overflow: visible;
  14. max-height: 100%;
  15. max-width: 100%;
  16. }
  17. .fill-primary {
  18. fill: $primary;
  19. }
  20. .fill-grey {
  21. fill: $grey;
  22. }
  23. }