{
if (timer !== -1) {
if (postButton != null) {
- postButton.style.animation = 'shrink 0.5s linear 1';
+ postButton.style.transform = 'scale(0)';
}
clearTimeout(timer);
}
timer = setTimeout(() => {
if (postButton != null) {
- postButton.style.animation = 'grow 0.5s linear 1';
+ postButton.style.transform = 'scale(1)';
}
}, 150);
}, false);
@@ -192,24 +192,6 @@ const wallpaper = localStorage.getItem('wallpaper') != null;