Skip to content

Commit 5b5a98a

Browse files
committed
Make the footer ignore the padding
1 parent b68ae5a commit 5b5a98a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/layout/heading.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ export const H4 = makeHeading(4, "text-2xl font-semibold md:text-3xl");
3232
export const H5 = makeHeading(5, "text-xl font-semibold md:text-2xl");
3333
export const H6 = makeHeading(6, "text-lg font-semibold md:text-xl");
3434

35-
export default { H1, H2, H3, H4, H5, H6 };
35+
export default { H1, H2, H3, H4, H5, H6 };

src/components/navigation/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Logo from "@/assets/images/brand/logo-200x200.webp";
44

55
const Footer = () => {
66
return (
7-
<div className="flex items-center justify-center w-full pt-16 mt-auto text-primary-contrast">
7+
<div className="flex items-center justify-center w-[calc(100%_+_4rem)] pt-16 mt-auto text-primary-contrast">
88
<footer className="flex flex-col w-full gap-4 p-8 border-2 max-w-7xl rounded-t-md bg-primary image-dots from-primary-light border-primary-light">
99
<div className="flex flex-col items-center gap-2 p-2 rounded-md bg-white/20 sm:flex-row backdrop-blur-[1.25px]">
1010
<div className="flex items-center gap-2">

0 commit comments

Comments
 (0)