From 4d3001812ce7ba6dc9bce164bb534cc974d0847e Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sun, 21 May 2023 21:09:09 -0700 Subject: [PATCH] limit 'notice-me' animation to 10 iterations --- chat/ChatView.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chat/ChatView.vue b/chat/ChatView.vue index 59cc729..36b9a98 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -632,7 +632,8 @@ .glowing { padding: 3px; margin-right: 0.5em; - animation: noticeme 2.5s infinite alternate; + animation: noticeme 2.5s alternate; + animation-iteration-count: 10; animation-timing-function: ease-in-out; }