12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .weui-tabs {
- width: 100%
- }
- .weui-tabs-bar__wrp {
- width: 100%;
- background: #fff;
- box-sizing: border-box;
- }
- .weui-tabs-bar__wrp scroll-view::-webkit-scrollbar {
- display: none;
- width: 0;
- height: 0;
- color: transparent;
- }
- .weui-tabs-bar__content {
- width: 100%;
- white-space: nowrap;
- box-sizing: border-box;
- }
- .weui-tabs-bar__content::-webkit-scrollbar {
- display: none;
- width: 0;
- height: 0;
- color: transparent;
- }
- .weui-tabs-bar__item {
- display: inline-block;
- width: calc(100% / 6);
- display: inline-flex;
- justify-content: center;
- }
- .weui-tabs-bar__title {
- display: inline-block;
- border-bottom-width: 2px;
- border-bottom-style: solid;
- border-bottom-color: transparent
- }
|