fix: popover position not correct #3147

pull/3150/head
tanjinzhou 2020-11-10 19:56:34 +08:00
parent 72a86910be
commit 50357712d4
1 changed files with 6 additions and 1 deletions

View File

@ -48,8 +48,13 @@
} }
@keyframes antZoomBigIn { @keyframes antZoomBigIn {
// 计算popover位置时有可能处于 active 状态,通过这种方式 hack 待改进
0% { 0% {
transform: scale(0.8); transform: none;
opacity: 0;
}
5% {
transform: scale(0.2);
opacity: 0; opacity: 0;
} }
100% { 100% {