mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
fix: 完成 login 页面
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@ $--color-text-2: hsla(0, 0%, 100%, 0.7);
|
||||
$--color-text-3: hsla(0, 0%, 100%, 0.5);
|
||||
$--color-text-4: hsla(0, 0%, 100%, 0.3);
|
||||
|
||||
$--max-width: 1920px;
|
||||
// 顶部距离
|
||||
$--header-height: 60px;
|
||||
// 模糊
|
||||
|
||||
Reference in New Issue
Block a user