mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-04 23:36:35 +08:00
24 lines
254 B
SCSS
24 lines
254 B
SCSS
.v-modal-enter {
|
|
animation: v-modal-in 0.2s ease;
|
|
}
|
|
|
|
.v-modal-leave {
|
|
animation: v-modal-out 0.2s ease forwards;
|
|
}
|
|
|
|
@keyframes v-modal-in {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
}
|
|
}
|
|
|
|
@keyframes v-modal-out {
|
|
0% {
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|