overlay.scss 175 B

12345678910
  1. .overlay {
  2. position: fixed;
  3. top: 0;
  4. right: 0;
  5. bottom: 0;
  6. left: 0;
  7. background: rgba(0, 0, 0, 0.6);
  8. transition: opacity 0.5s;
  9. z-index: var(--overlay-z-index);
  10. }