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