Fix preview live : position:absolute sur img (height:100% cassé dans flex avec align-items:center)

La balise <img> avec height:100% ne se propage pas quand le parent est un
flex item positionné avec align-self:center au lieu de stretch. Le fix :
position:absolute top:0 left:0 width/height 100% sur .preview-live img.

Retiré aussi --remote-debugging-port=9222 (diagnostic temporaire).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-10 11:16:19 +02:00
parent 831c64f4f7
commit a51d235faf
2 changed files with 2 additions and 1 deletions

View File

@@ -320,6 +320,8 @@ html, body {
}
.preview-live img {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
object-fit: contain;