mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 19:29:04 +08:00
22 lines
293 B
Plaintext
22 lines
293 B
Plaintext
.scale-transition {
|
|
.transition-default();
|
|
|
|
&-enter-from,
|
|
&-leave,
|
|
&-leave-to {
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
}
|
|
}
|
|
|
|
.scale-rotate-transition {
|
|
.transition-default();
|
|
|
|
&-enter-from,
|
|
&-leave,
|
|
&-leave-to {
|
|
opacity: 0;
|
|
transform: scale(0) rotate(-45deg);
|
|
}
|
|
}
|