scale.less 293 B

123456789101112131415161718192021
  1. .scale-transition {
  2. .transition-default();
  3. &-enter-from,
  4. &-leave,
  5. &-leave-to {
  6. transform: scale(0);
  7. opacity: 0;
  8. }
  9. }
  10. .scale-rotate-transition {
  11. .transition-default();
  12. &-enter-from,
  13. &-leave,
  14. &-leave-to {
  15. transform: scale(0) rotate(-45deg);
  16. opacity: 0;
  17. }
  18. }