web/SidebarTab: fix selection animation in webkit

This commit is contained in:
wukko 2024-08-23 21:07:18 +06:00
parent 2479900bb9
commit 09a6b5179e
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -30,7 +30,7 @@
tab.classList.add("animate"); tab.classList.add("animate");
setTimeout(() => { setTimeout(() => {
tab.classList.remove("animate"); tab.classList.remove("animate");
}, 220); }, 250);
} }
</script> </script>
@ -102,10 +102,10 @@
transform: scale(0.95); transform: scale(0.95);
} }
50% { 50% {
transform: scale(1.01); transform: scale(1.02);
} }
100% { 100% {
transform: none; transform: scale(1);
} }
} }