[bugfix] Popup modal display error

This commit is contained in:
陈嘉涵
2017-10-16 16:24:10 +08:00
parent ed26ed2284
commit ade8a97d6d
7 changed files with 100 additions and 236 deletions

View File

@@ -10,6 +10,15 @@
}
}
@keyframes van-fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.van-slide-bottom {
&-enter-active {
animation: van-slide-bottom-enter .3s both ease;

View File

@@ -8,7 +8,11 @@
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.7);
transition: .5s ease-out;
animation: van-fade-in .3s both;
}
&-overflow-hidden {
overflow: hidden !important;
}
&-popup {