_modal.scss 286 B

123456789101112131415
  1. .modal {
  2. position: fixed;
  3. z-index: z('modal');
  4. left: -100%;
  5. top: 0;
  6. right: 0;
  7. bottom: 0;
  8. width: 100%; /* Full width */
  9. height: 100%; /* Full height */
  10. overflow: hidden;
  11. opacity: 0;
  12. background: rgba(0,0,0,0.6);
  13. @include transition(opacity, 0.25s, ease-in-out);
  14. }