From 4fa8f8b00130d9c97a8e6ed6ed92a5f088178429 Mon Sep 17 00:00:00 2001 From: Tara Rostami <132676256+TaraRostami@users.noreply.github.com> Date: Sat, 16 Mar 2024 14:15:55 +0330 Subject: [PATCH] Update inbounds.html --- web/html/xui/inbounds.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/html/xui/inbounds.html b/web/html/xui/inbounds.html index 84eec3d2..c15674e2 100644 --- a/web/html/xui/inbounds.html +++ b/web/html/xui/inbounds.html @@ -40,6 +40,13 @@ max-width: 200px; overflow: hidden; } + .online-animation .ant-badge-status-dot { + animation: 1.2s ease infinite normal none running onlineAnimation; + } + @keyframes onlineAnimation { + 0%, 50%, 100% { transform: scale(1); opacity: 1; } + 10% { transform: scale(1.5); opacity: .2; } + }