[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: visible focus rendering of footer's privacy policy link (#1110)

authored by

Julien Déramond and committed by
GitHub
bd4b408e c6e57983

+2 -2
+2 -2
app/components/AppFooter.vue
··· 14 14 <BuildEnvironment v-if="!isHome" footer /> 15 15 </div> 16 16 <!-- Desktop: Show all links. Mobile: Links are in MobileMenu --> 17 - <div class="hidden sm:flex items-center gap-6"> 17 + <div class="hidden sm:flex items-center gap-6 min-h-11"> 18 18 <NuxtLink :to="{ name: 'about' }" class="link-subtle font-mono text-xs flex items-center"> 19 19 {{ $t('footer.about') }} 20 20 </NuxtLink> 21 21 <NuxtLink 22 22 :to="{ name: 'privacy' }" 23 - class="link-subtle font-mono text-xs min-h-11 flex items-center gap-1" 23 + class="link-subtle font-mono text-xs flex items-center gap-1" 24 24 > 25 25 {{ $t('privacy_policy.title') }} 26 26 </NuxtLink>