Browse Source

Fix: limit image crop stage height

- Addresses issue when extra-tall portrait images are uploaded for cropping
qrcode-reboot
Jose Olarte III 22 hours ago
parent
commit
d636b21744
  1. 4
      src/components/ImageMethodDialog.vue

4
src/components/ImageMethodDialog.vue

@ -185,14 +185,14 @@
dragMode: 'crop',
aspectRatio: 1 / 1,
}"
class="max-h-[90vh] max-w-[90vw] object-contain"
class="max-h-[50vh] max-w-[90vw] object-contain"
/>
</div>
<div v-else>
<div class="flex justify-center">
<img
:src="createBlobURL(blob)"
class="mt-2 rounded max-h-[90vh] max-w-[90vw] object-contain"
class="mt-2 rounded max-h-[50vh] max-w-[90vw] object-contain"
/>
</div>
</div>

Loading…
Cancel
Save