From ebbd788fbb2c0b45d4473798efc57eec8ba74a25 Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期二, 18 六月 2024 14:51:16 +0800
Subject: [PATCH] 版本更新至2.11.5

---
 src/design/transition/zoom.less |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/design/transition/zoom.less b/src/design/transition/zoom.less
index 2ea378c..24ddbb8 100644
--- a/src/design/transition/zoom.less
+++ b/src/design/transition/zoom.less
@@ -1,27 +1,31 @@
 // zoom-out
 .zoom-out-enter-active,
 .zoom-out-leave-active {
-  transition: opacity 0.1 ease-in-out, transform 0.15s ease-out;
+  transition:
+    opacity 0.1 ease-in-out,
+    transform 0.15s ease-out;
 }
 
 .zoom-out-enter-from,
 .zoom-out-leave-to {
-  opacity: 0;
   transform: scale(0);
+  opacity: 0;
 }
 
 // zoom-fade
 .zoom-fade-enter-active,
 .zoom-fade-leave-active {
-  transition: transform 0.2s, opacity 0.3s ease-out;
+  transition:
+    transform 0.2s,
+    opacity 0.3s ease-out;
 }
 
 .zoom-fade-enter-from {
-  opacity: 0;
   transform: scale(0.92);
+  opacity: 0;
 }
 
 .zoom-fade-leave-to {
-  opacity: 0;
   transform: scale(1.06);
+  opacity: 0;
 }

--
Gitblit v1.9.3