Modal.css 449 B

1234567891011121314151617181920212223242526272829
  1. .Modal {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. overflow: auto;
  11. padding: calc(var(--space-factor) * 10);
  12. }
  13. .Modal__background {
  14. position: fixed;
  15. top: 0;
  16. left: 0;
  17. right: 0;
  18. bottom: 0;
  19. z-index: 1;
  20. background-color: rgba(0, 0, 0, 0.3);
  21. backdrop-filter: blur(2px);
  22. }
  23. .Modal__content {
  24. position: relative;
  25. z-index: 2;
  26. width: 100%;
  27. }