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; }
+ }