diff --git a/src/Components/PdfEditor/PdfEditor.vue b/src/Components/PdfEditor/PdfEditor.vue index 9e0d0b863d..f7dd790b13 100644 --- a/src/Components/PdfEditor/PdfEditor.vue +++ b/src/Components/PdfEditor/PdfEditor.vue @@ -75,7 +75,7 @@ export default { const containerWidth = this.$el?.clientWidth || 0 if (!containerWidth || !maxPageWidth) return 1 - const availableWidth = containerWidth - 80 + const availableWidth = containerWidth - 40 return Math.max(0.1, Math.min(2, availableWidth / maxPageWidth)) }, adjustZoomToFit() {