Fix mobile PDF viewer scrolling - wrap iframe in scrollable container

This commit is contained in:
TheMaddax 2025-12-18 08:36:42 -07:00
parent 73b0e7ae9e
commit 0273caca03

View file

@ -100,14 +100,16 @@ const handleDownload = () => {
</div> </div>
<!-- PDF Content --> <!-- PDF Content -->
<div class="flex-1 bg-gray-50 overflow-hidden" <div class="flex-1 bg-gray-50"
:class="isMobile ? 'p-1' : 'p-4'"> :class="isMobile ? 'p-1' : 'p-4'">
<iframe <div class="w-full h-full overflow-auto rounded-md bg-white" style="-webkit-overflow-scrolling: touch;">
:src="`${documentUrl}#view=FitH&toolbar=1&navpanes=0&scrollbar=1`" <iframe
class="w-full h-full border-0 rounded-md bg-white" :src="`${documentUrl}#view=FitH&toolbar=1&navpanes=0&scrollbar=1`"
:title="documentTitle" class="w-full border-0 bg-white"
style="overflow: auto; -webkit-overflow-scrolling: touch;" :style="{ minHeight: isMobile ? '200vh' : '100%', height: isMobile ? 'auto' : '100%' }"
/> :title="documentTitle"
/>
</div>
</div> </div>
</div> </div>
</div> </div>