From 013fbe1b188d9b8a07c47eadadeaa87dab338883 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 28 Nov 2023 16:24:47 +0100 Subject: [PATCH] Fix excessively bold text on project board issue cards --- templates/custom/header.tmpl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/custom/header.tmpl b/templates/custom/header.tmpl index 8033b25..013d748 100644 --- a/templates/custom/header.tmpl +++ b/templates/custom/header.tmpl @@ -43,6 +43,11 @@ font-variation-settings: "wght" var(--font-weight-bold); } + /* Bold is excessive on issue title when shown without details. */ + .issue-card-title { + font-variation-settings: normal !important; + } + .repository.view.issue .title .issue-title h1 { font-variation-settings: "wght" var(--font-weight-thin); }