Skip to content

Commit 4eef531

Browse files
committed
fix: center footer icons for small viewport
1 parent ea590b2 commit 4eef531

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/herbatika/src/components/herbatika-footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export function HerbatikaFooter() {
9797

9898
<Footer.Divider className="mx-auto max-w-footer-max" />
9999
<section className="mx-auto flex w-full max-w-footer-max flex-col items-start justify-between gap-550 px-500 py-700 lg:flex-row lg:items-center lg:gap-800">
100-
<div className="flex flex-wrap items-center gap-300">
100+
<div className="flex w-full flex-wrap items-center justify-center gap-300 md:w-auto md:justify-start">
101101
{SOCIAL_LINKS.map((social) => (
102102
<Button
103103
aria-label={social.label}
@@ -130,7 +130,7 @@ export function HerbatikaFooter() {
130130
</Footer.Link>
131131
</Footer.Text>
132132

133-
<div className="flex flex-wrap items-center justify-start gap-150 sm:justify-end">
133+
<div className="flex w-full flex-wrap items-center justify-center gap-150 md:w-auto md:justify-end">
134134
{FOOTER_LOCALES.map((locale) => (
135135
<Button
136136
icon={locale.icon}

0 commit comments

Comments
 (0)