header logo + legal pages: fit-to-header + top inset
Build & Deploy unom website / build (push) Successful in 12s
Build & Deploy unom website / deploy (push) Successful in 4s

- 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).
This commit is contained in:
2026-05-26 19:00:06 +02:00
parent faa663c0e5
commit a327a2daf3
+1 -1
View File
@@ -3,7 +3,7 @@ import Section from "./Section";
const LegalPage: FC<{ children: ReactNode }> = ({ children }) => {
return (
<Section>
<Section className="pt-height-header">
<article className="markdown">{children}</article>
</Section>
);