Skip to content

Commit c6a7b9a

Browse files
committed
fix padding bug on footer
1 parent 72c2e1f commit c6a7b9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/Footer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,8 @@ const Footer = ({ lastDeployLocaleTimestamp }: FooterProps) => {
302302
"text-body-medium no-underline hover:text-primary hover:after:text-primary"
303303

304304
return (
305-
<footer className="px-8 py-4">
306-
<div className="flex flex-wrap items-center justify-center gap-8 border-t border-body-light py-4 md:justify-between">
305+
<footer className="px-4 py-4">
306+
<div className="flex flex-wrap items-center justify-center gap-8 border-t border-body-light px-4 py-4 md:justify-between">
307307
<p className="text-sm italic text-body-medium">
308308
<Translation id="website-last-updated" />: {lastDeployLocaleTimestamp}
309309
</p>
@@ -317,7 +317,7 @@ const Footer = ({ lastDeployLocaleTimestamp }: FooterProps) => {
317317
</Button>
318318
</div>
319319

320-
<div className="grid auto-cols-auto justify-between gap-4 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-5">
320+
<div className="grid auto-cols-auto justify-between gap-4 px-4 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-5">
321321
{linkSections.map((section: FooterLinkSection, idx) => (
322322
<div key={idx}>
323323
<h3 className="my-5 text-sm font-bold">

0 commit comments

Comments
 (0)