fix : transition du panneau Modal (transform seul) pour éviter un timeout de test flaky (#MUI-36)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-26 08:45:28 +02:00
parent 12bba2c84f
commit ab2810118f
+1 -2
View File
@@ -264,7 +264,7 @@ let openModalCount = 0
.modal-enter-active > div:last-child, .modal-enter-active > div:last-child,
.modal-leave-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, .modal-enter-from,
@@ -275,6 +275,5 @@ let openModalCount = 0
.modal-enter-from > div:last-child, .modal-enter-from > div:last-child,
.modal-leave-to > div:last-child { .modal-leave-to > div:last-child {
transform: scale(0.95); transform: scale(0.95);
opacity: 0;
} }
</style> </style>