index.less 355 B

1234567891011121314151617181920
  1. .equipment-radio{
  2. display: inline-flex;
  3. &__option{
  4. font-size: 14px;
  5. padding: 4px 8px;
  6. margin: 8px 0;
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. border-radius: 4px;
  11. cursor: pointer;
  12. &--active{
  13. background: @background;
  14. color: @primary;
  15. }
  16. &+&{
  17. margin-left: 4px;
  18. }
  19. }
  20. }