From 181e9500de8a2a0c8de5f549abc6e831945699db Mon Sep 17 00:00:00 2001 From: aaron <> Date: Sun, 22 Mar 2026 12:05:08 +0800 Subject: [PATCH] add wallet link --- frontend/hyperliquid.html | 46 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/frontend/hyperliquid.html b/frontend/hyperliquid.html index 85b726e..d267db3 100644 --- a/frontend/hyperliquid.html +++ b/frontend/hyperliquid.html @@ -290,6 +290,27 @@ color: #ff4444; } + /* 钱包地址 */ + .wallet-link { + color: var(--accent); + text-decoration: none; + font-size: 14px; + font-weight: 500; + display: flex; + align-items: center; + gap: 6px; + transition: opacity 0.2s; + } + + .wallet-link:hover { + opacity: 0.7; + text-decoration: underline; + } + + .wallet-icon { + font-size: 16px; + } + /* 空状态 */ .empty-state { padding: 60px 20px; @@ -458,6 +479,17 @@