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,15 +100,17 @@ 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'">
<div class="w-full h-full overflow-auto rounded-md bg-white" style="-webkit-overflow-scrolling: touch;">
<iframe <iframe
:src="`${documentUrl}#view=FitH&toolbar=1&navpanes=0&scrollbar=1`" :src="`${documentUrl}#view=FitH&toolbar=1&navpanes=0&scrollbar=1`"
class="w-full h-full border-0 rounded-md bg-white" class="w-full border-0 bg-white"
:style="{ minHeight: isMobile ? '200vh' : '100%', height: isMobile ? 'auto' : '100%' }"
:title="documentTitle" :title="documentTitle"
style="overflow: auto; -webkit-overflow-scrolling: touch;"
/> />
</div> </div>
</div> </div>
</div> </div>
</div>
</template> </template>