From aabb9776d4e5ef0776a210b6a70e439c97934519 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Wed, 10 Sep 2025 09:36:16 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20=E5=BE=AE=E8=B0=83=E7=AD=BE?= =?UTF-8?q?=E5=88=B0=E5=A5=96=E5=8A=B1=E4=BA=A4=E4=BA=92=E6=95=88=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/userScripts/tus-sign.vue | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/components/userScripts/tus-sign.vue b/src/components/userScripts/tus-sign.vue index b42d550b..cc6b36a6 100644 --- a/src/components/userScripts/tus-sign.vue +++ b/src/components/userScripts/tus-sign.vue @@ -396,7 +396,6 @@ async function trySign(ac: SignAccount[], ck: TGApp.App.Account.Cookie): Promise img { width: 100%; height: 100%; - border-radius: 4px; } .delete { @@ -430,16 +429,16 @@ async function trySign(ac: SignAccount[], ck: TGApp.App.Account.Cookie): Promise height: 48px; align-items: center; justify-content: center; + border: 1px solid var(--common-shadow-1); border-radius: 50%; background: var(--box-bg-4); img { - width: 100%; - height: 100%; + width: 36px; + height: 36px; box-sizing: border-box; - padding: 10px; - border: 1px solid var(--common-shadow-1); border-radius: 50%; + transition: all 0.3s; } span { @@ -454,5 +453,11 @@ async function trySign(ac: SignAccount[], ck: TGApp.App.Account.Cookie): Promise font-size: 8px; text-align: center; } + + &:hover img { + width: 40px; + height: 40px; + transition: all 0.3s; + } }