From 04bfc341687722a2a13f041393eb7b73b579a1ca Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Thu, 1 Jan 2026 10:29:47 -0300 Subject: [PATCH] chore: reduce lateral space Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- src/Components/PdfEditor/PdfEditor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {