[Vuejs]-Vue-js-modal resizable issue

0👍

You need to use CSS styles to configure it manually before Overlay

.v--modal-overlay{
//add style like u r requirement
}

In style, you can also add these line to make it left align after it overlays

v--modal-box v--modal.{
left:0px !important
}

Leave a comment