Skip to content

Commit

Permalink
feat: adjust dynamic padding
Browse files Browse the repository at this point in the history
  • Loading branch information
moonbamijam committed May 7, 2024
1 parent 96fc462 commit 23c08f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/common/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Section({
>
{image}
<div
className={`content relative flex flex-col items-center px-[5vw] ${contentStyles}`}
className={`content relative flex flex-col items-center px-[2vw] ${contentStyles}`}
>
{children}
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Footer() {
<>
<section id="footer" className="container relative bottom-0">
<WaveOpacity />
<div className="py-[64px] px-[10vw] text-on-primary bg-primary dark:bg-primary-dark">
<div className="py-[64px] px-[8vw] text-on-primary bg-primary dark:bg-primary-dark">
<div className="flex flex-col lg:flex-row items-center mb-8">
<h1 className="text-3xl lg:text-4xl font-bold text-center tracking-tight mb-8">
Let&apos;s build from here!
Expand Down
2 changes: 1 addition & 1 deletion components/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Header() {
<div
className={`w-full h-[60px] z-[1000] fixed top-0 ${scrollHeaderBg}`}
></div>
<header className="container h-[60px] w-full z-[1000] fixed top-0 left-[50%] translate-x-[-50%] px-[10vw] flex justify-between items-center">
<header className="container h-[60px] w-full z-[1000] fixed top-0 left-[50%] translate-x-[-50%] px-[8vw] flex justify-between items-center">
<Link
href="/"
id="brand"
Expand Down

0 comments on commit 23c08f0

Please sign in to comment.