Skip to content

Commit 59a3ae8

Browse files
committed
style: swap tagline and disclaimer positions in footer
1 parent 2cb892f commit 59a3ae8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

app/components/AppFooter.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ const closeModal = () => modalRef.value?.close?.()
1414
<footer class="border-t border-border mt-auto">
1515
<div class="container sm:py-8 flex flex-col sm:gap-4 text-fg-subtle text-sm">
1616
<div class="flex justify-between">
17-
<p class="text-xs text-fg-muted text-center sm:text-start m-0">
18-
<span class="sm:hidden">{{ $t('non_affiliation_disclaimer') }}</span>
19-
<span class="hidden sm:inline">{{ $t('trademark_disclaimer') }}</span>
17+
<p class="font-mono text-balance hidden sm:block">
18+
{{ $t('tagline') }}
2019
</p>
2120
<p class="hidden lg:flex text-fg-muted uppercase h-5 items-center">{{ $t('nav.links') }}</p>
2221
</div>
2322
<div class="flex justify-between flex-col lg:flex-row gap-3">
2423
<div class="flex flex-col gap-3">
25-
<p class="font-mono text-balance hidden sm:block">
26-
{{ $t('tagline') }}
24+
<p class="text-xs text-fg-muted text-center sm:text-start m-0">
25+
<span class="sm:hidden">{{ $t('non_affiliation_disclaimer') }}</span>
26+
<span class="hidden sm:inline">{{ $t('trademark_disclaimer') }}</span>
2727
</p>
2828
<BuildEnvironment v-if="!isHome" footer />
2929
</div>

0 commit comments

Comments
 (0)