From 454733d80eaa0b426ae510a0a95ece003e75f588 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Thu, 13 Nov 2025 08:16:17 -0500 Subject: [PATCH] Typography: Semi-Bold NHeader and NLabel --- Widgets/NHeader.qml | 2 +- Widgets/NLabel.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Widgets/NHeader.qml b/Widgets/NHeader.qml index 08d58e01..aa40765d 100644 --- a/Widgets/NHeader.qml +++ b/Widgets/NHeader.qml @@ -15,7 +15,7 @@ ColumnLayout { NText { text: root.label pointSize: Style.fontSizeXL - font.weight: Style.fontWeightBold + font.weight: Style.fontWeightSemiBold color: Color.mSecondary visible: root.label !== "" } diff --git a/Widgets/NLabel.qml b/Widgets/NLabel.qml index f1a42440..4ae24762 100644 --- a/Widgets/NLabel.qml +++ b/Widgets/NLabel.qml @@ -16,7 +16,7 @@ ColumnLayout { NText { text: label pointSize: Style.fontSizeL - font.weight: Style.fontWeightBold + font.weight: Style.fontWeightSemiBold color: labelColor visible: label !== "" Layout.fillWidth: true