From 8c21d3494329b8e3c5489d3a9a4914769ed505c8 Mon Sep 17 00:00:00 2001 From: Rootiest Date: Fri, 4 Sep 2026 16:43:27 -0400 Subject: [PATCH] style(docs): double the Gitea/GitHub header icon size --sl-nav-height is a fixed CSS var, not driven by icon content, so both icons can grow without changing the header bar's height. --- docs/site/src/components/starlight/SocialIcons.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/site/src/components/starlight/SocialIcons.astro b/docs/site/src/components/starlight/SocialIcons.astro index 5c9b0b6..077fb71 100644 --- a/docs/site/src/components/starlight/SocialIcons.astro +++ b/docs/site/src/components/starlight/SocialIcons.astro @@ -20,7 +20,7 @@ const links = config.social || []; return ( {label} - {customIcon ? ); })} @@ -39,8 +39,8 @@ const links = config.social || []; color: var(--sl-color-white); } .social-icon { - width: 1.5rem; - height: 1.5rem; + width: 3rem; + height: 3rem; } }