sweetalert2 / sweetalert2-themes

Themes for SweetAlert2: Dark, Minimal, Borderless, Bootstrap, Material UI, WordPress Admin, Bulma, ...
MIT License
221 stars 92 forks source link

Showing a SweetAlert in fullscreen #95

Closed vnihoul77 closed 2 years ago

vnihoul77 commented 2 years ago

We're looking to display a SweetAlert popup in fullscreen. Here's what we tried so far:

CSS

.fullscreen-swal{
        z-index: 9999 !important;
        width:100vw !important;
        height:100vh !important;
        }

JS

    customClass: "fullscreen-swal",
    autoHeight: false

The popup is not showing almost (70%) fullscreen, so it's bigger but not fullscreen. What am I missing?

limonte commented 2 years ago
Swal.fire({
  grow: 'fullscreen'
})
vnihoul77 commented 2 years ago

Thanks for your answer, however using this parameter still leaves borders/space around the modal. Screenshot: https://imgur.com/a/FTR9xXq