Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #7 from AbandonTech/fix/footer-padding
Browse files Browse the repository at this point in the history
last update broke padding on desktop, added back x padding
  • Loading branch information
fisher60 committed May 27, 2023
2 parents ca8866d + e621d2a commit 8f123be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import githubIcon from "@/components/github.svg";
const infoEmail = "[email protected]"
export default function Footer() {
return (
<div id="contactUs" className="flex justify-center md:justify-start w-screen text-lg text-orange-500 bg-white py-16">
<div id="contactUs" className="flex justify-center md:justify-start w-screen text-lg text-orange-500 bg-white py-16 md:px-16">
<div className="flex flex-col space-y-2 text-center md:text-left">
<a href={`mailto:${infoEmail}`}><Image className="inline-block mr-1" src={mailIcon} width={20} height={50} alt="email envelop icon" />{infoEmail}</a>
<a href="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/AbandonTech" target="_blank" rel="noreferrer"><Image className="inline-block mr-1" src={githubIcon} width={20} height={50} alt="github icon" />Github</a>
Expand Down

0 comments on commit 8f123be

Please sign in to comment.