Skip to content

Commit f14d379

Browse files
committed
fix footer height
1 parent 0e7b22b commit f14d379

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/hero/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ void main() {
8989
const camera = new Camera(gl, { near: 0.1, far: 100 });
9090
camera.position.set(2.2, 2.2, 2.2);
9191
camera.lookAt(new Vec3(0, 0, 0));
92-
renderer.setSize(window.innerWidth, window.innerHeight - 264);
92+
renderer.setSize(window.innerWidth, window.innerHeight - 240);
9393
const resize = () => {
9494
camera.perspective({ aspect: gl.canvas.width / gl.canvas.height });
9595
};

src/components/layout/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Link from "next/link";
44

55
export const Footer = () => {
66
return (
7-
<div className="flex flex-col-reverse md:flex-row justify-between items-center m-4 mt-2 dashed-top dashed-bottom after:hidden md:after:block md:h-[108px]">
7+
<div className="flex flex-col-reverse md:flex-row justify-between items-center m-4 mt-2 dashed-top dashed-bottom after:hidden md:after:block md:h-[84px]">
88
<Link
99
href="/"
1010
className="flex items-center gap-4 dashed-right after:hidden lg:after:block h-full pl-2 lg:px-10 py-8 pb-4 md:py-0"

0 commit comments

Comments
 (0)