web/CaptchaTooltip: make animation not annoying

This commit is contained in:
wukko 2025-05-23 22:56:32 +06:00
parent 71ea3239a7
commit 78cf73b34e
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -24,11 +24,11 @@
bottom: calc(100% + 10px);
opacity: 0;
transform: scale(0) translateX(25px) translateY(15px);
transform: scale(0.5) translateX(10px) translateY(15px);
transform-origin: bottom left;
transition:
transform 0.25s cubic-bezier(0.53, 0.05, 0.23, 1.15),
transform 0.2s cubic-bezier(0.53, 0.05, 0.23, 1.15),
opacity 0.2s cubic-bezier(0.53, 0.05, 0.23, 0.99);
will-change: transform, opacity;