fix(animation): simplify text scale to 4 smooth keyframes

This commit is contained in:
2026-01-14 15:53:19 +01:00
parent 7fa67daac8
commit f7b4962255

View File

@@ -760,18 +760,8 @@ kbd {
opacity: 0;
}
20% {
top: 45%;
transform: translateX(-50%) translateY(-50%) scale(1.4);
opacity: 1;
}
28% {
top: 52%;
transform: translateX(-50%) translateY(-50%) scale(0.9);
opacity: 1;
}
35% {
top: 50%;
transform: translateX(-50%) translateY(-50%) scale(1);
transform: translateX(-50%) translateY(-50%) scale(1.3);
opacity: 1;
}
65% {
@@ -781,7 +771,7 @@ kbd {
}
100% {
top: 100%;
transform: translateX(-50%) translateY(0) scale(0.3);
transform: translateX(-50%) translateY(0) scale(0.2);
opacity: 0;
}
}