tabs.wxss 904 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @import '../../common.wxss';
  2. .page{
  3. background-color: var(--weui-BG-2);
  4. height: 100%;
  5. }
  6. .weui-tabs-bar__wrp {
  7. border-bottom: 1px solid var(--weui-BG-2);
  8. margin-top: 10px;
  9. }
  10. .weui-tabs-swiper {
  11. width: 100%;
  12. height: 100%;
  13. background-color: var(--weui-BG-2);
  14. }
  15. .tab-content {
  16. /* height: 100px; */
  17. width: 100%;
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: center;
  21. align-items: center;
  22. box-sizing: border-box;
  23. padding: 20px;
  24. }
  25. .weui-tabs-bar__title {
  26. margin: 0px 10px;
  27. }
  28. .tab-bar-title__selected {
  29. font-size: 20px;
  30. font-weight: bold;
  31. }
  32. .item-title {
  33. margin: 10px 10px 5px;
  34. font-size: 18px;
  35. width: 100%;
  36. }
  37. .item-desc {
  38. margin: 5px 10px 0;
  39. width: 100%;
  40. color: var(--weui-FG-1)
  41. }
  42. .weui-tabs-bar__item {
  43. background-color: var(--weui-BG-2) !important;
  44. color: var(--weui-FG-0) !important;
  45. }