vue-image-crop-upload icon indicating copy to clipboard operation
vue-image-crop-upload copied to clipboard

Image streches when adjusting size

Open michug opened this issue 5 years ago • 1 comments
trafficstars

Not the preview images, just the big one. Previews look fine. But the other image stretches instead of scaling. Could we have a prop to not show de big image? Thats a quick fix for me

Screen Shot 2020-06-17 at 12 23 42 PM

michug avatar Jun 17 '20 15:06 michug

Add the below style to upload.css file (should be in node_modules/vue-image-crop-upload)

.vicp-img{
    max-width:unset;
}

Found this solution in some older issue here and it seems to be working

isak007 avatar Oct 13 '22 14:10 isak007