Skip to content

Commit bd4b408

Browse files
fix: visible focus rendering of footer's privacy policy link (#1110)
1 parent c6e5798 commit bd4b408

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/AppFooter.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ const isHome = computed(() => route.name === 'index')
1414
<BuildEnvironment v-if="!isHome" footer />
1515
</div>
1616
<!-- 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">
1818
<NuxtLink :to="{ name: 'about' }" class="link-subtle font-mono text-xs flex items-center">
1919
{{ $t('footer.about') }}
2020
</NuxtLink>
2121
<NuxtLink
2222
: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"
2424
>
2525
{{ $t('privacy_policy.title') }}
2626
</NuxtLink>

0 commit comments

Comments
 (0)