d342bd0c630bd1fecbb5f1cd47180bd67797691da04a61a6d76f6329fc7ed728a1ab3b020e455650205dabba6adb7f8a9e4b00eb97bfae55fa540ed7c1a604 549 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @import "./var.scss";
  2. @import "../mixins/mixins";
  3. .v-modal-enter {
  4. animation: v-modal-in .2s ease;
  5. }
  6. .v-modal-leave {
  7. animation: v-modal-out .2s ease forwards;
  8. }
  9. @keyframes v-modal-in {
  10. 0% {
  11. opacity: 0;
  12. }
  13. 100% {
  14. }
  15. }
  16. @keyframes v-modal-out {
  17. 0% {
  18. }
  19. 100% {
  20. opacity: 0;
  21. }
  22. }
  23. .v-modal {
  24. position: fixed;
  25. left: 0;
  26. top: 0;
  27. width: 100%;
  28. height: 100%;
  29. opacity: $--popup-modal-opacity;
  30. background: $--popup-modal-background-color;
  31. }
  32. @include b(popup-parent) {
  33. @include m(hidden) {
  34. overflow: hidden;
  35. }
  36. }