| 123456789101112131415161718192021222324252627282930 |
- .mtp-tabbar {
- &--menu {
- .list {
- display : flex;
- list-style-type: none;
- margin : 0;
- padding : 0;
- &-item {
- display : flex;
- justify-content: center;
- align-items : center;
- height : 22px;
- color : #7a8a94;
- cursor : pointer;
- border : 1px solid #22292c;
- padding : 0 16px;
- &:not(:first-child) {
- border-left: 0;
- }
- &.active {
- color : #0866b8;
- background-color: #0e2f4c;
- }
- }
- }
- }
- }
|