[Vuejs]-Is there any class which gives greater width than modal-lg?

0👍

I just do

.modal-lg {
      max-width: 70%;
    }

0👍

Why don’t you use the min-width CSS for your modal-content?
Like this:

 .modal-dialog.modal-lg {
     min-width: 80%
 }

Leave a comment