index.less 801 B

123456789101112131415161718192021222324252627282930
  1. .mtp-tabbar {
  2. &--menu {
  3. .list {
  4. display : flex;
  5. list-style-type: none;
  6. margin : 0;
  7. padding : 0;
  8. &-item {
  9. display : flex;
  10. justify-content: center;
  11. align-items : center;
  12. height : 22px;
  13. color : #7a8a94;
  14. cursor : pointer;
  15. border : 1px solid #22292c;
  16. padding : 0 16px;
  17. &:not(:first-child) {
  18. border-left: 0;
  19. }
  20. &.active {
  21. color : #0866b8;
  22. background-color: #0e2f4c;
  23. }
  24. }
  25. }
  26. }
  27. }