From 59e7589a29ab085b4f1abf24fa968bfef2db9e94 Mon Sep 17 00:00:00 2001 From: "Hunter W." Date: Fri, 27 Mar 2026 15:56:49 -0400 Subject: [PATCH] fixed footer on small displays --- app/globals.css | 9 ++++++++- components/Footer.tsx | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/app/globals.css b/app/globals.css index 94f27b1..49b1358 100644 --- a/app/globals.css +++ b/app/globals.css @@ -143,9 +143,16 @@ body { background: rgba(110, 231, 183, 0.25); color: var(--fg); } - +.footer { + flex-direction: row; + height: 28; + } @media (max-width: 640px) { h1 { font-size: 32px !important; } + .footer { + flex-direction: column; + height: 36; + } } \ No newline at end of file diff --git a/components/Footer.tsx b/components/Footer.tsx index 8cfcd67..1cdd4b9 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -4,12 +4,12 @@ import { SITE } from "@/data/content"; export default function Footer() { return (