index.less 169 B

123456789101112
  1. @import './var.less';
  2. :root {
  3. --van-sticky-z-index: @sticky-z-index;
  4. }
  5. .van-sticky {
  6. &--fixed {
  7. position: fixed;
  8. z-index: var(--van-sticky-z-index);
  9. }
  10. }