From d4ea2ed219b88578dd10804922073b6500011fb7 Mon Sep 17 00:00:00 2001 From: Carlos Roca Date: Wed, 17 Apr 2024 08:34:17 +0200 Subject: [PATCH] [IMP] web_responsive: Set viewer width to 100% to better use the space Before this changes, when previewing a pdf there was a lot of lost space Now, it is filling all the space --- .../src/components/attachment_viewer/attachment_viewer.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss b/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss index 454fd9573..57f537454 100644 --- a/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss +++ b/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss @@ -37,7 +37,7 @@ display: none; } .o_AttachmentViewer_viewIframe { - width: 95%; + width: 100% !important; } } }