_modal.scss 413 B

12345678910111213141516171819202122
  1. .modal {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. height: 100%;
  6. width: 100%;
  7. background-color: rgba(0, 0, 0, 0.3);
  8. padding: 0 20px;
  9. z-index: 100;
  10. overflow-y: auto;
  11. .content {
  12. position: relative;
  13. max-width: 350px;
  14. margin: 100px auto;
  15. padding: 1em;
  16. background: white;
  17. border-radius: $border-radius;
  18. overflow: auto;
  19. box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
  20. }
  21. }