From 8ce63fcba293def582dff89b38a51213cbae09c3 Mon Sep 17 00:00:00 2001 From: Dom Date: Tue, 21 Apr 2026 12:10:24 +0200 Subject: [PATCH] =?UTF-8?q?fix(vwb):=20CSS=20max-height=20100%=20=E2=86=92?= =?UTF-8?q?=20calc(100vh-70px)=20=E2=80=94=20cause=20racine=20du=20timbre?= =?UTF-8?q?=20poste?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le fichier CSS avait max-height:100% sur .fullscreen-content img qui écrasait le style inline calc(100vh-70px). 100% d'un conteneur flex sans hauteur explicite = taille naturelle de l'image = minuscule. Co-Authored-By: Claude Opus 4.6 (1M context) --- visual_workflow_builder/frontend_v4/src/styles.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/visual_workflow_builder/frontend_v4/src/styles.css b/visual_workflow_builder/frontend_v4/src/styles.css index 8e11244f3..840f6de88 100644 --- a/visual_workflow_builder/frontend_v4/src/styles.css +++ b/visual_workflow_builder/frontend_v4/src/styles.css @@ -1089,9 +1089,7 @@ body { .fullscreen-content img { max-width: 100%; - max-height: 100%; - width: auto; - height: auto; + max-height: calc(100vh - 70px); object-fit: contain; cursor: crosshair; }