0
Fork 0
mirror of https://projects.blender.org/infrastructure/gitea-custom.git synced 2024-12-22 15:23:32 -05:00

Fix excessively bold text on project board issue cards

This commit is contained in:
Brecht Van Lommel 2023-11-28 16:24:47 +01:00
parent a168b7d35a
commit 013fbe1b18

View file

@ -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);
}