index.acss 874 B

1234567891011121314151617181920212223242526272829
  1. .index-anchor-index {
  2. display: block;
  3. height: initial;
  4. }
  5. @import "../common/index.acss";
  6. .index-anchor-index .van-index-anchor {
  7. padding: 0 16px;
  8. padding: var(--index-anchor-padding, 0 16px);
  9. color: #323233;
  10. color: var(--index-anchor-text-color, #323233);
  11. font-weight: 500;
  12. font-weight: var(--index-anchor-font-weight, 500);
  13. font-size: 14px;
  14. font-size: var(--index-anchor-font-size, 14px);
  15. line-height: 32px;
  16. line-height: var(--index-anchor-line-height, 32px);
  17. background-color: initial;
  18. background-color: var(--index-anchor-background-color, transparent);
  19. }
  20. .index-anchor-index .van-index-anchor--active {
  21. right: 0;
  22. left: 0;
  23. color: #07c160;
  24. color: var(--index-anchor-active-text-color, #07c160);
  25. background-color: #fff;
  26. background-color: var(--index-anchor-active-background-color, #fff);
  27. }