From afc3f1c577aa2d9445ad4a70ab0562dc15ae8695 Mon Sep 17 00:00:00 2001 From: Lyn Fugmann Date: Fri, 20 Sep 2024 16:49:36 +0200 Subject: [PATCH] use Aileron font globally this used to be the case in 2022 and earlier, not sure why not in 2023 --- _layouts/page.njk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/_layouts/page.njk b/_layouts/page.njk index b930a4e..e21301f 100644 --- a/_layouts/page.njk +++ b/_layouts/page.njk @@ -35,7 +35,7 @@ eleventyComputed: } body { margin: 0; - font-family: sans-serif; + font-family: Aileron, sans-serif; line-height: 1.5; color: var(--color-text); } @@ -45,7 +45,6 @@ main { margin-right: auto; } h1, h2, h3, h4 { - font-family: Aileron, sans-serif; color: var(--color-primary); } h1 { @@ -73,4 +72,7 @@ h5 { font-size: 1rem; margin-bottom: 1rem; } +p { + line-height: 1.8; +} {% endcss %}