Skip to content

Commit 205054b

Browse files
committed
refactor(footer): align breakpoints to sm and fix responsive gap
1 parent 29c155a commit 205054b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/components/AppFooter.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ const footerSections: Array<{ label: string; links: FooterLink[] }> = [
9292
</script>
9393

9494
<template>
95-
<footer class="border-t border-border md:mt-auto md:pt-8 duration-200 transition-all">
95+
<footer class="border-t border-border sm:mt-auto sm:pt-8 duration-200 transition-all">
9696
<div class="container flex flex-col gap-3">
9797
<!-- Desktop: Show all links. Mobile: Links are in MobileMenu -->
9898
<div
99-
class="hidden md:flex flex-col lg:flex-row gap-6 lg:gap-0 lg:justify-between py-3 duration-200 transition-all"
99+
class="hidden sm:flex flex-col lg:flex-row gap-6 lg:gap-0 lg:justify-between py-3 duration-200 transition-all"
100100
>
101101
<div class="flex flex-col gap-6">
102102
<div class="flex flex-col items-start gap-3">
@@ -152,7 +152,7 @@ const footerSections: Array<{ label: string; links: FooterLink[] }> = [
152152
</div>
153153

154154
<small
155-
class="border-border py-7.75 md:border-t md:py-4 duration-200 transition-all text-xs text-fg-muted text-center md:text-start m-0"
155+
class="border-border py-7.75 sm:border-t sm:py-4 duration-200 transition-all text-xs text-fg-muted text-center sm:text-start m-0"
156156
>
157157
<span class="lg:hidden">{{ $t('non_affiliation_disclaimer') }}</span>
158158
<span class="hidden lg:block">{{ $t('trademark_disclaimer') }}</span>

0 commit comments

Comments
 (0)