How to change the width of modals to a specific % based on page width?

Thanks @ben !

I ended up using the following and works a treat!

.modal-lg {
            max-width: 60%;
            min-width: 400px;
            margin: auto;
            
 }
3 Likes