Skip to content

Commit 56f1223

Browse files
julien-deramondwhitep4nth3r
authored andcommitted
fix: visible focus rendering of footer's privacy policy link (#1110)
1 parent 73ea341 commit 56f1223

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/AppFooter.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ 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>
@@ -26,7 +26,7 @@ const isHome = computed(() => route.name === 'index')
2626
</NuxtLink>
2727
<NuxtLink
2828
:to="{ name: 'privacy' }"
29-
class="link-subtle font-mono text-xs min-h-11 flex items-center gap-1"
29+
class="link-subtle font-mono text-xs flex items-center gap-1"
3030
>
3131
{{ $t('privacy_policy.title') }}
3232
</NuxtLink>

0 commit comments

Comments
 (0)