From 23011a7dcf41c7e5fe506b2d2334f1761e8a22f1 Mon Sep 17 00:00:00 2001 From: QihanNX Date: Tue, 11 Aug 2026 09:06:14 +0000 Subject: [PATCH] style: enlarge avatar, bigger text, more padding --- src/pages/links.astro | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/pages/links.astro b/src/pages/links.astro index c88ca39..2757376 100644 --- a/src/pages/links.astro +++ b/src/pages/links.astro @@ -86,8 +86,8 @@ const links: FriendLink[] = [ .link-card { display: flex; align-items: center; - gap: 0.65rem; - padding: 0.75rem 1rem; + gap: 1rem; + padding: 1rem 1.25rem; border: 1.5px dashed var(--border); border-radius: 0.75rem; background: var(--background); @@ -103,8 +103,8 @@ const links: FriendLink[] = [ } .link-avatar { - width: 40px; - height: 40px; + width: 48px; + height: 48px; border-radius: 50%; flex-shrink: 0; object-fit: cover; @@ -114,20 +114,20 @@ const links: FriendLink[] = [ .link-info { display: flex; flex-direction: column; - gap: 0.1rem; + gap: 0.2rem; min-width: 0; } .link-name { font-weight: 600; - font-size: 0.9rem; - line-height: 1.3; + font-size: 1.05rem; + line-height: 1.4; } .link-desc { - font-size: 0.78rem; + font-size: 0.85rem; color: var(--muted-foreground); - line-height: 1.3; + line-height: 1.4; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;