diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-27 08:27:16 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-27 08:27:16 +0800 |
commit | 2c92227f5a7cd55e874afe102fb593ee1a936662 (patch) | |
tree | ebccc339bfa6e7092e55204fe6a2ab634d7d2100 /GridCardItem.ui.qml | |
parent | 2bc8b1d8351e037dc5accb8e4f18228191159551 (diff) |
Use Heebo Bold for card title
Diffstat (limited to 'GridCardItem.ui.qml')
-rw-r--r-- | GridCardItem.ui.qml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/GridCardItem.ui.qml b/GridCardItem.ui.qml index 64b1dc8..6f4340d 100644 --- a/GridCardItem.ui.qml +++ b/GridCardItem.ui.qml @@ -90,14 +90,20 @@ Item { } + FontLoader { + id: heebo + name: "Heebo Bold" + source: "Heebo-Bold.ttf" + } + Label { id: title width: parent.width text: titleText wrapMode: Text.Wrap font { - weight: Font.Medium - pointSize: 20 + family: heebo.name + pixelSize: 21 } anchors { top: badgeAndFavorite.bottom |