From a327a2daf3a86205edc8d18e5f1d122741f20115 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Tue, 26 May 2026 19:00:06 +0200 Subject: [PATCH] header logo + legal pages: fit-to-header + top inset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Header link sizes to 70% of the header height (aspect-square) so it fits at all breakpoints instead of overflowing the 100px default height. Was hard-pinned to 120×120 which clipped on small headers. - LegalPage adds pt-height-header so content starts below the fixed header instead of being covered by it (the Landing route stays full-bleed intentionally). --- src/components/LegalPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LegalPage.tsx b/src/components/LegalPage.tsx index b4216b4..72ddad2 100644 --- a/src/components/LegalPage.tsx +++ b/src/components/LegalPage.tsx @@ -3,7 +3,7 @@ import Section from "./Section"; const LegalPage: FC<{ children: ReactNode }> = ({ children }) => { return ( -
+
{children}
);