diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-14 12:08:11 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-14 12:08:11 +0800 |
commit | ff2736010fb98faf42b6407b283442755df56ca0 (patch) | |
tree | 3d699a8e332da865506ee1e3a9f899489e3d79a3 | |
parent | 0cdefd281af4cd66b62a58c158149e16d8aa5b0a (diff) |
Colours & margins for the card labels
-rw-r--r-- | CardGrid.ui.qml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CardGrid.ui.qml b/CardGrid.ui.qml index 729fb71..1584e36 100644 --- a/CardGrid.ui.qml +++ b/CardGrid.ui.qml @@ -137,8 +137,10 @@ Item { Label { id: title text: titleText + color: Qt.rgba(.141, .161, .176, 1.0) wrapMode: Text.Wrap Layout.fillWidth: true + Layout.bottomMargin: 8 font { family: heebo.name pixelSize: 21 @@ -153,10 +155,13 @@ Item { Label { id: textTruncate text: textTruncateText + color: Qt.rgba(.455, .459, .475, 1.0) wrapMode: Text.Wrap Layout.fillWidth: true + Layout.bottomMargin: 8 font { - weight: Font.Light + family: doesntEmbed ? "Roboto" + : roboto.name pointSize: 14 } } |