index.less 316 B

12345678910111213141516
  1. @import './var.less';
  2. :root {
  3. --van-overlay-z-index: @overlay-z-index;
  4. --van-overlay-background-color: @overlay-background-color;
  5. }
  6. .van-overlay {
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. z-index: var(--van-overlay-z-index);
  11. width: 100%;
  12. height: 100%;
  13. background: var(--van-overlay-background-color);
  14. }