summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-14 12:08:11 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-14 12:08:11 +0800
commitff2736010fb98faf42b6407b283442755df56ca0 (patch)
tree3d699a8e332da865506ee1e3a9f899489e3d79a3
parent0cdefd281af4cd66b62a58c158149e16d8aa5b0a (diff)
Colours & margins for the card labels
-rw-r--r--CardGrid.ui.qml7
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
}
}