1234567891011121314151617181920212223242526272829303132333435363738 |
- .homeStatistics {
- min-height: 100vh;
- // background: #F6F7F8;
- background: linear-gradient(to bottom, #beffe6 0px, #f6f7f8 595px);
- // background: linear-gradient(90deg, #FE4083 0%, #FEC3D4 100%);
- }
- .tabs {
- :global {
- .van-tabs__nav {
- background-color: transparent;
- padding-bottom: 12px;
- }
- .van-tab {
- font-size: 16px;
- color: #666;
- }
- .van-tab--active {
- font-weight: 600;
- color: #333333;
- }
- .van-tabs__line {
- width: 16px;
- height: 4px;
- background: #2dc7aa;
- border-radius: 2px;
- }
- .van-tabs__content, .van-tab__panel {
- height: calc(100vh - var(--van-tabs-line-height) - var(--header-height, 0));
- overflow-x: hidden;
- overflow-y: auto;
- }
- .van-tab__panel {
- height: 100%;
- }
- }
- }
|