vtabs.wxss 754 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .weui-vtabs {
  2. width: 100%;
  3. height: 100%;
  4. display: flex
  5. }
  6. .weui-vtabs-bar__wrp {
  7. width: 110px;
  8. height: 100%;
  9. background: #eeeeee;
  10. }
  11. .weui-vtabs-bar__scrollview {
  12. height: 100%
  13. }
  14. .weui-vtabs-bar__content {
  15. width: 110px;
  16. height: 100%
  17. }
  18. .weui-vtabs-bar__item {
  19. display: inline-block;
  20. width: 110px;
  21. height: 55px;
  22. border-left: 4px solid transparent
  23. }
  24. .weui-vtabs-bar__title {
  25. box-sizing: border-box;
  26. width: 100%;
  27. height: 100%;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. font-size: 14px;
  32. white-space: nowrap;
  33. overflow: hidden
  34. }
  35. .weui-vtabs-content__wrp {
  36. overflow: hidden;
  37. flex: 1;
  38. height: 100%
  39. }
  40. .weui-vtabs-content__scrollview {
  41. height: 100%
  42. }
  43. .weui-vtabs-content {
  44. height: 100%
  45. }