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.
 
 
 
 

45 line
820 B

  1. .icon-grid {
  2. display: flex;
  3. flex-wrap: wrap;
  4. gap: 20px;
  5. &__item {
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. justify-content: flex-start;
  10. gap: 10px;
  11. width: 140px;
  12. padding: 16px 8px;
  13. border: 1px solid var(--theme-color-primary-dimmed-03);
  14. border-radius: var(--border-radius-xs);
  15. text-align: center;
  16. }
  17. &__glyph {
  18. display: block;
  19. height: 40px;
  20. line-height: 40px;
  21. font-size: 32px;
  22. }
  23. &--pictograms &__glyph {
  24. font-family: 'Pictograms', sans-serif;
  25. }
  26. &--icons &__glyph {
  27. font-family: 'Icons', sans-serif;
  28. }
  29. &--pictograms-new &__glyph {
  30. font-family: 'PictogramsNew', sans-serif;
  31. }
  32. &__label {
  33. font-size: 12px;
  34. line-height: 1.4;
  35. word-break: break-word;
  36. color: var(--theme-color-primary);
  37. }
  38. }