From da7e108bd00efc8d86134e51930809c7c7861822 Mon Sep 17 00:00:00 2001 From: hanyuxinting Date: Mon, 28 Apr 2025 11:03:44 +0800 Subject: [PATCH] =?UTF-8?q?fix(popup):=20=E8=A7=84=E8=8C=83=E5=8C=96?= =?UTF-8?q?=E5=86=99=E5=8A=A8=E6=95=88,=E5=85=BC=E5=AE=B9=E5=A4=84?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/packages/popup/popup.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/packages/popup/popup.scss b/src/packages/popup/popup.scss index 370adf6e3a..60bf3cb2e5 100644 --- a/src/packages/popup/popup.scss +++ b/src/packages/popup/popup.scss @@ -197,6 +197,9 @@ from { transform: translate3d(0, -100%, 0); } + to { + transform: translate3d(0, 0%, 0); + } } @keyframes popup-slide-top-exit { @@ -224,6 +227,9 @@ from { transform: translate3d(100%, 0, 0); } + to { + transform: translate3d(0%, 0, 0); + } } @keyframes popup-slide-right-exit { @@ -251,6 +257,9 @@ from { transform: translate3d(0, 100%, 0); } + to { + transform: translate3d(0, 0%, 0); + } } @keyframes slide-bottom-exit { @@ -278,6 +287,9 @@ from { transform: translate3d(-100%, 0, 0); } + to { + transform: translate3d(0%, 0, 0); + } } @keyframes popup-slide-left-exit {