From 7dd2c3d96d43a5bf7d9d4a1862eb7de1f6be3d04 Mon Sep 17 00:00:00 2001 From: dem4ron Date: Mon, 31 Aug 2026 16:54:34 +0200 Subject: [PATCH] Fix wrong font-weight on landing hero highlight MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The i18n extraction in #8044 moved the hero headline into a locale string and dropped the classes that were on the markup: %strong.leading-none.font-bold really Without font-bold the falls back to the browser default font-weight: bolder, which is relative — against the h1's 700 it resolves to 900, and Poppins ships a real 900 face, so "really" rendered visibly heavier instead of reading as a highlight. Restore both declarations in CSS rather than in the locale string, matching the existing p > strong and h2 > strong rules in this file and keeping styling out of translatable copy. --- app/css/pages/landing.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/css/pages/landing.css b/app/css/pages/landing.css index 59ec38b2f0..2f67357060 100644 --- a/app/css/pages/landing.css +++ b/app/css/pages/landing.css @@ -7,6 +7,11 @@ & .lhs { @apply flex-grow flex flex-col; } + & h1 { + & strong { + @apply font-bold leading-none; + } + } & p { max-width: 680px; & strong {