Fix: limit image crop stage height

- Addresses issue when extra-tall portrait images are uploaded for cropping
This commit is contained in:
Jose Olarte III
2025-05-23 17:25:22 +08:00
parent 37b7c4ed36
commit d636b21744

View File

@@ -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>