Issue
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/
Solution
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/sweetalert2@7.1.2/dist/sweetalert2.all.js"></script>
<button onclick="test()">test</button>
Answered By - klugjo
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.