Skip to content

Commit 0aa31b1

Browse files
committed
fix: use tracking-wide on column labels (CI fix)
1 parent 8d02c3e commit 0aa31b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/components/AppFooter.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const closeModal = () => modalRef.value?.close?.()
2424
<div class="hidden sm:grid sm:grid-cols-2 lg:grid-cols-3 gap-x-10 gap-y-1 min-h-11 text-xs">
2525
<!-- Column 1: Product -->
2626
<div class="flex flex-col gap-1">
27-
<span class="text-fg-subtle uppercase tracking-wider text-2xs mb-1">{{ $t('footer.product') }}</span>
27+
<span class="text-fg-subtle uppercase tracking-wide text-2xs mb-1">{{ $t('footer.product') }}</span>
2828
<LinkBase :to="{ name: 'about' }">{{ $t('footer.about') }}</LinkBase>
2929
<LinkBase :to="{ name: 'blog' }">{{ $t('footer.blog') }}</LinkBase>
3030
<LinkBase :to="NPMX_DOCS_SITE">{{ $t('footer.docs') }}</LinkBase>
@@ -119,15 +119,15 @@ const closeModal = () => modalRef.value?.close?.()
119119

120120
<!-- Column 2: Legal & Info -->
121121
<div class="flex flex-col gap-1">
122-
<span class="text-fg-subtle uppercase tracking-wider text-2xs mb-1">{{ $t('footer.legal') }}</span>
122+
<span class="text-fg-subtle uppercase tracking-wide text-2xs mb-1">{{ $t('footer.legal') }}</span>
123123
<LinkBase :to="{ name: 'privacy' }">{{ $t('privacy_policy.title') }}</LinkBase>
124124
<LinkBase :to="{ name: 'accessibility' }">{{ $t('a11y.footer_title') }}</LinkBase>
125125
<LinkBase :to="{ name: 'translation-status' }">{{ $t('translation_status.title') }}</LinkBase>
126126
</div>
127127

128128
<!-- Column 3: Community -->
129129
<div class="flex flex-col gap-1">
130-
<span class="text-fg-subtle uppercase tracking-wider text-2xs mb-1">{{ $t('footer.community') }}</span>
130+
<span class="text-fg-subtle uppercase tracking-wide text-2xs mb-1">{{ $t('footer.community') }}</span>
131131
<LinkBase to="https://repo.npmx.dev">{{ $t('footer.source') }}</LinkBase>
132132
<LinkBase to="https://social.npmx.dev">{{ $t('footer.social') }}</LinkBase>
133133
<LinkBase :to="discord.url">{{ discord.label }}</LinkBase>

0 commit comments

Comments
 (0)