bootstrap4-modal-fullscreen.css 318 B

123456789101112131415161718
  1. .modal.modal-fullscreen .modal-dialog {
  2. width: 100vw;
  3. height: 100vh;
  4. margin: 0;
  5. padding: 0;
  6. max-width: none;
  7. }
  8. .modal.modal-fullscreen .modal-content {
  9. height: auto;
  10. height: 100vh;
  11. border-radius: 0;
  12. border: none;
  13. }
  14. .modal.modal-fullscreen .modal-body {
  15. overflow-y: auto;
  16. }