Is it possible?
nope 馃槃
bad news :(
Hey @howardEagle,
I have finally added height="auto" flag & scrollable content, if you are using the component, please take a look here:
@euvl thanks for that. I made temporary workaround:
normalizeHeight () {
setTimeout(function () {
const modal = document.querySelector('.v--modal-box.v--modal')
if (modal) {
modal.style.height = this.modalType === 'register' ? '420px' : '350px'
if (this.modalType === 'register' && !this.newTop) {
this.newTop = true
modal.style.top = (parseInt(modal.style.top) - 50) + 'px'
}
}
}.bind(this), 50)
}
Most helpful comment
@euvl thanks for that. I made temporary workaround: