17 lines
322 B
Plaintext
17 lines
322 B
Plaintext
@import './var.less';
|
|
|
|
:root {
|
|
--van-overlay-z-index: @overlay-z-index;
|
|
--van-overlay-background-color: @overlay-background-color;
|
|
}
|
|
|
|
.van-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: var(--van-overlay-z-index);
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--van-overlay-background-color);
|
|
}
|