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

index.less 451 B

123456789101112131415161718192021222324
  1. .menu-icon-selector {
  2. display: grid;
  3. grid-template-columns: repeat(4, 80px);
  4. gap: 20px;
  5. justify-content: space-between;
  6. width: 100%;
  7. &__item {
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. width: 80px;
  12. height: 80px;
  13. border: 1px solid transparent;
  14. border-radius: 4px;
  15. cursor: pointer;
  16. &:hover,
  17. &--select {
  18. color: @primary-color;
  19. border-color: @primary-color;
  20. }
  21. }
  22. }