From 04a02d089f7d5865b8893ff4ef05ef813f171750 Mon Sep 17 00:00:00 2001 From: Rootiest Date: Mon, 17 Aug 2026 16:18:02 -0400 Subject: [PATCH] style(docs-site): size the Gitea header icon up to 1.5rem MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit At the default 1em (16px) it read as noticeably smaller than the other header controls, especially next to the logo. Bumped to a fixed 1.5rem — well within the nav bar's existing content height, so the header itself doesn't grow. --- docs/site/src/components/starlight/SocialIcons.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/site/src/components/starlight/SocialIcons.astro b/docs/site/src/components/starlight/SocialIcons.astro index 28d3c5d..5c9b0b6 100644 --- a/docs/site/src/components/starlight/SocialIcons.astro +++ b/docs/site/src/components/starlight/SocialIcons.astro @@ -39,8 +39,8 @@ const links = config.social || []; color: var(--sl-color-white); } .social-icon { - width: 1em; - height: 1em; + width: 1.5rem; + height: 1.5rem; } }