diff --git a/packages/client/src/ui/universal.vue b/packages/client/src/ui/universal.vue index c658752668..e187f3fdb6 100644 --- a/packages/client/src/ui/universal.vue +++ b/packages/client/src/ui/universal.vue @@ -25,7 +25,7 @@ - +
{ 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;