Del: transform action

This commit is contained in:
unitwk 2024-02-23 10:51:31 +08:00
parent 02b81fbbd5
commit 3cc56edb5a

View File

@ -151,13 +151,13 @@ const showCardOperator = (card: ILayoutCard) => {
@keyframes scaleAnimation {
0% {
opacity: 0;
transform: scale(0.98);
opacity: 0.1;
// transform: scale(0.98);
}
100% {
opacity: 1;
transform: scale(1);
// transform: scale(1);
}
}
</style>