From 0c04448b36dced7919c51cfe212b8c6b3c73fbef Mon Sep 17 00:00:00 2001 From: codaMW Date: Sat, 28 Feb 2026 12:58:23 +0200 Subject: [PATCH] fix: extend nav breakpoint to 1024px to fix tablet layout --- src/components/Header.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index 841d71d..9ae7bff 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -310,8 +310,8 @@ const i = t(locale); color: var(--accent); } - /* Mobile Styles */ - @media (max-width: 768px) { + /* Mobile + Tablet Styles */ + @media (max-width: 1024px) { .nav-desktop { display: none; }