sweetalert2 / sweetalert2-react-content

Official SweetAlert2 enhancer adding support for React elements as content
MIT License
689 stars 47 forks source link

Backdrop doesn't cover entire of screen #244

Closed memcaliber closed 1 year ago

memcaliber commented 1 year ago

Describe the bug

Hi.. i try this version on my nextJS theme. all function works fine, but when alert appears, the black background/backdrop doesn't cover entire of screen/page area. my sidebar menu not covered at all. bug reac sweetalert

limonte commented 1 year ago
Swal.fire({
  ...
  customClass: {
    container: 'custom-z-index',
  }
})
.custom-z-index {
  z-index: 9999; /* z-index is 1060 by default, for your project make it bigger than z-index of sidebar */
}