You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
435 B
SCSS
33 lines
435 B
SCSS
//globl transition css
|
|
|
|
/*fade*/
|
|
.fade-enter-active,
|
|
.fade-leave-active {
|
|
transition: opacity 0.28s;
|
|
}
|
|
|
|
.fade-enter,
|
|
.fade-leave-active {
|
|
opacity: 0;
|
|
}
|
|
|
|
/*fade*/
|
|
.breadcrumb-enter-active,
|
|
.breadcrumb-leave-active {
|
|
transition: all .5s;
|
|
}
|
|
|
|
.breadcrumb-enter,
|
|
.breadcrumb-leave-active {
|
|
opacity: 0;
|
|
transform: translateX(20px);
|
|
}
|
|
|
|
.breadcrumb-move {
|
|
transition: all .5s;
|
|
}
|
|
|
|
.breadcrumb-leave-active {
|
|
position: absolute;
|
|
}
|