mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-22 14:45:43 +08:00
权限控制
This commit is contained in:
@@ -8,3 +8,5 @@
|
||||
@import 'common';
|
||||
// element样式
|
||||
@import 'element';
|
||||
// 动画
|
||||
@import 'transition';
|
||||
|
||||
27
admin/src/styles/transition.scss
Normal file
27
admin/src/styles/transition.scss
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
/* fade */
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
|
||||
.fade-enter,
|
||||
.fade-leave-active {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
/* fade-transform */
|
||||
.fade-transform-leave-active,
|
||||
.fade-transform-enter-active {
|
||||
transition: all .5s;
|
||||
}
|
||||
|
||||
.fade-transform-enter {
|
||||
opacity: 0;
|
||||
transform: translateX(-25px);
|
||||
}
|
||||
|
||||
.fade-transform-leave-to {
|
||||
opacity: 0;
|
||||
transform: translateX(25px);
|
||||
}
|
||||
Reference in New Issue
Block a user