SweetAlert2: Set dialog height

Eric Bergman picture Eric Bergman · Dec 22, 2017 · Viewed 7.5k times · Source

for sweetAlert2 I noticed there's no "height" property but there is a "width" property, is there a way to set the height of the dialog to be 80%?

Thanks

https://limonte.github.io/sweetalert2/

Answer

klugjo picture klugjo · Dec 22, 2017

You have to use a custom CSS class like in the snippet below:

const test = () => {
  swal({
     title: 'Test',
     customClass: 'swal-height'
  });

};
.swal-height {
  height: 80vh;
}
<script src="https://unpkg.com/[email protected]/dist/sweetalert2.all.js"></script>

<button onclick="test()">test</button>