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.

39 lines
596 B

  1. .icons {
  2. display: inline-block;
  3. color: mc('grey', '800');
  4. &.is-text {
  5. display: inline-block;
  6. width: 1em;
  7. height: 1em;
  8. vertical-align: middle;
  9. position: relative;
  10. top: -0.0625em;
  11. stroke: none;
  12. fill: none;
  13. }
  14. @each $size in 16,18,20,24,32,48,64,96,128 {
  15. &.is-#{$size} {
  16. width: #{$size}px;
  17. height: #{$size}px;
  18. }
  19. }
  20. &.has-right-pad {
  21. margin-right: .5rem;
  22. }
  23. &.is-outlined {
  24. stroke-width: 2px;
  25. use {
  26. fill: inherit;
  27. stroke: mc('grey', '800');
  28. }
  29. }
  30. }
  31. .material-design-icon {
  32. display: inline-flex;
  33. }