Skip to content

Commit

Permalink
Merge pull request #14413 from ethereum/footerPaddingBug
Browse files Browse the repository at this point in the history
fix padding bug on footer
  • Loading branch information
wackerow authored Dec 2, 2024
2 parents 5ed6b53 + c6a7b9a commit ed8bcfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@ const Footer = ({ lastDeployLocaleTimestamp }: FooterProps) => {
"text-body-medium no-underline hover:text-primary hover:after:text-primary"

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

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

0 comments on commit ed8bcfe

Please sign in to comment.