From ab2810118fab7cdbae812aefacd52c6c071a7774 Mon Sep 17 00:00:00 2001 From: tristan Date: Tue, 26 May 2026 08:45:28 +0200 Subject: [PATCH] =?UTF-8?q?fix=20:=20transition=20du=20panneau=20Modal=20(?= =?UTF-8?q?transform=20seul)=20pour=20=C3=A9viter=20un=20timeout=20de=20te?= =?UTF-8?q?st=20flaky=20(#MUI-36)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) --- app/components/malio/modal/Modal.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/components/malio/modal/Modal.vue b/app/components/malio/modal/Modal.vue index cb28c48..13b09cb 100644 --- a/app/components/malio/modal/Modal.vue +++ b/app/components/malio/modal/Modal.vue @@ -264,7 +264,7 @@ let openModalCount = 0 .modal-enter-active > div:last-child, .modal-leave-active > div:last-child { - transition: transform 0.2s ease, opacity 0.2s ease; + transition: transform 0.2s ease; } .modal-enter-from, @@ -275,6 +275,5 @@ let openModalCount = 0 .modal-enter-from > div:last-child, .modal-leave-to > div:last-child { transform: scale(0.95); - opacity: 0; }