index.module.less 796 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .mineOrchestra {
  2. padding-top: 12px;
  3. }
  4. .select {
  5. height: 45px;
  6. .icon {
  7. width: 17px;
  8. height: 17px;
  9. margin-right: 4px;
  10. flex-shrink: 0;
  11. }
  12. :global {
  13. .van-cell__title {
  14. overflow: hidden;
  15. white-space: nowrap;
  16. text-overflow: ellipsis;
  17. }
  18. .van-cell__right-icon {
  19. color: #333;
  20. transform: rotate(90deg);
  21. margin: 0 0 0 4px;
  22. }
  23. }
  24. }
  25. .tabs {
  26. --van-tab-active-text-color: var(--van-primary-color);
  27. :global {
  28. .van-tab {
  29. font-size: 15px;
  30. color: #333;
  31. }
  32. .van-tab--active {
  33. color: var(--van-primary-color);
  34. }
  35. .van-tabs__line {
  36. bottom: 20px;
  37. }
  38. }
  39. }
  40. .content {
  41. height: calc(100vh - 57px - var(--van-tabs-line-height) - var(--header-height));
  42. overflow: hidden;
  43. overflow-y: auto;
  44. }