index.less 534 B

123456789101112131415161718192021
  1. @import '../style/var';
  2. .van-index-anchor {
  3. z-index: @index-anchor-z-index;
  4. box-sizing: border-box;
  5. padding: @index-anchor-padding;
  6. color: @index-anchor-text-color;
  7. font-weight: @index-anchor-font-weight;
  8. font-size: @index-anchor-font-size;
  9. line-height: @index-anchor-line-height;
  10. background-color: @index-anchor-background-color;
  11. &--sticky {
  12. position: fixed;
  13. top: 0;
  14. right: 0;
  15. left: 0;
  16. color: @index-anchor-sticky-text-color;
  17. background-color: @index-anchor-sticky-background-color;
  18. }
  19. }