animation.scss 254 B

1234567891011121314151617181920212223
  1. .v-modal-enter {
  2. animation: v-modal-in 0.2s ease;
  3. }
  4. .v-modal-leave {
  5. animation: v-modal-out 0.2s ease forwards;
  6. }
  7. @keyframes v-modal-in {
  8. 0% {
  9. opacity: 0;
  10. }
  11. 100% {
  12. }
  13. }
  14. @keyframes v-modal-out {
  15. 0% {
  16. }
  17. 100% {
  18. opacity: 0;
  19. }
  20. }