diff --git a/docs/site/src/components/starlight/SocialIcons.astro b/docs/site/src/components/starlight/SocialIcons.astro index 077fb71..8a57237 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,12 @@ const links = config.social || []; color: var(--sl-color-white); } .social-icon { - width: 3rem; - height: 3rem; + /* !important: the i-pajamas:* class comes from UnoCSS, which emits + unlayered CSS. Unlayered rules always win over anything in a + @layer regardless of specificity or source order, so a plain + override here is silently ignored no matter how it's written. */ + width: 3rem !important; + height: 3rem !important; } }