Skip to content

Commit

Permalink
✨Feat: Footer 반응형 적용 #30
Browse files Browse the repository at this point in the history
  • Loading branch information
puretension committed Apr 26, 2024
1 parent 4442f03 commit 5a3bbd2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/components/layout/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Footer = () => {
};

return (
<footer className="w-full py-10 bg-mono_900 flex pl-[400px]">
<footer className="w-full py-10 bg-mono_900 flex desktop:pl-80 tablet:pl-20 pl-10">
<div className="flex justify-start items-start w-full gap-10">
<div>
<h1 className="F1">About Us</h1>
Expand All @@ -33,14 +33,14 @@ const Footer = () => {
</div>
<div>
<h1 className="F1">Contact</h1>
<div className="contact-item">
<p className="F2 label-width">이메일</p>
<p className="F2">[email protected]</p>
</div>
<div className="contact-item">
<p className="F2 label-width">주소</p>
<p className="F2">서울특별시 중구 필동로1길 30</p>
</div>
<div className="contact-item">
<p className="F2 label-width">이메일</p>
<p className="F2">[email protected]</p>
</div>
<div className="contact-item">
<p className="F2 label-width">주소</p>
<p className="F2">서울특별시 중구 필동로1길 30</p>
</div>
</div>
</div>
</footer>
Expand Down

0 comments on commit 5a3bbd2

Please sign in to comment.