Is there a way to adjust the width of a Bootstrap 5 modal to be a percentage of the full screen? This method seemed effective in previous versions of Bootstrap.
<div class="modal-dialog modal-dialog-centered per80" role="document" >
.per80 {
width: 80% !important;
}
ALTERNATIVELY
$(".modal-dialog").css("width", "80%");`
I have attempted adding a custom class or inline style with "width: 80%", but neither approach has been successful in adjusting the modal width as desired.