index.wxss 711 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .weui-tabs {
  2. width: 100%
  3. }
  4. .weui-tabs-bar__wrp {
  5. width: 100%;
  6. background: #fff;
  7. box-sizing: border-box;
  8. }
  9. .weui-tabs-bar__wrp scroll-view::-webkit-scrollbar {
  10. display: none;
  11. width: 0;
  12. height: 0;
  13. color: transparent;
  14. }
  15. .weui-tabs-bar__content {
  16. width: 100%;
  17. white-space: nowrap;
  18. box-sizing: border-box;
  19. }
  20. .weui-tabs-bar__content::-webkit-scrollbar {
  21. display: none;
  22. width: 0;
  23. height: 0;
  24. color: transparent;
  25. }
  26. .weui-tabs-bar__item {
  27. display: inline-block;
  28. width: calc(100% / 6);
  29. display: inline-flex;
  30. justify-content: center;
  31. }
  32. .weui-tabs-bar__title {
  33. display: inline-block;
  34. border-bottom-width: 2px;
  35. border-bottom-style: solid;
  36. border-bottom-color: transparent
  37. }