feat: Overlay component

This commit is contained in:
chenjiahan
2020-07-06 14:12:22 +08:00
parent bad69d9f3f
commit 2a41dcf58e
7 changed files with 398 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
@import '../style/var';
.van-overlay {
position: fixed;
top: 0;
left: 0;
z-index: @overlay-z-index;
width: 100%;
height: 100%;
background-color: @overlay-background-color;
}