fix: 完成 login 页面

This commit is contained in:
MTrun
2021-12-15 14:25:28 +08:00
parent c4caff75e4
commit ed49e4add8
27 changed files with 155 additions and 43 deletions
+14
View File
@@ -1,3 +1,4 @@
// 淡入淡出
.v-modal-enter {
animation: v-modal-in 0.2s ease;
}
@@ -21,3 +22,16 @@
opacity: 0;
}
}
// 移动动画
.list-complete-item {
transition: all 1s;
}
.list-complete-enter,
.list-complete-leave-to {
opacity: 0;
transform: translateY(30px);
}
.list-complete-leave-active {
position: absolute;
}