summaryrefslogtreecommitdiff
path: root/HomeDefault.ui.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-28 10:53:48 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-28 10:53:48 +0800
commit4ebd3e18880f6a08d82e7c89e93cddde59ed5cf9 (patch)
treed44caad3fa10b5232cda52f9744ba56b28349ca2 /HomeDefault.ui.qml
parent62c3a610a7f04dcb162657c76129a6e079766932 (diff)
Set tabs font
Diffstat (limited to 'HomeDefault.ui.qml')
-rw-r--r--HomeDefault.ui.qml29
1 files changed, 18 insertions, 11 deletions
diff --git a/HomeDefault.ui.qml b/HomeDefault.ui.qml
index 0a1d971..be551b4 100644
--- a/HomeDefault.ui.qml
+++ b/HomeDefault.ui.qml
@@ -14,6 +14,11 @@ Flickable {
|| Qt.platform.os === "windows"
contentHeight: body.height
+ FontLoader {
+ id: regular
+ source: doesntEmbed ? "" : "Roboto/Roboto-Regular.ttf"
+ }
+
ColumnLayout {
id: body
anchors {
@@ -56,7 +61,7 @@ Flickable {
}
FontLoader {
- id: roboto
+ id: medium
source: doesntEmbed ? ""
: "Roboto/Roboto-Medium.ttf"
}
@@ -69,7 +74,7 @@ Flickable {
Layout.fillWidth: true
font {
family: doesntEmbed ? "Roboto"
- : roboto.name
+ : medium.name
pointSize: 18.75
}
}
@@ -94,7 +99,7 @@ Flickable {
font {
family: doesntEmbed
? "Roboto"
- : roboto.name
+ : medium.name
pixelSize: 16
weight: Font.Medium
}
@@ -231,7 +236,7 @@ Flickable {
wrapMode: Text.Wrap
Layout.fillWidth: true
font {
- family: doesntEmbed ? "Roboto" : roboto.name
+ family: doesntEmbed ? "Roboto" : medium.name
pointSize: 15
}
}
@@ -256,21 +261,23 @@ Flickable {
rightMargin: 16
verticalCenter: parent.verticalCenter
}
- cellWidth: 132.906
- cellHeight: 46.5
- implicitHeight: width < 266 ? cellHeight * 5 : width < 399 ? cellHeight * 3 : width < 665 ? cellHeight * 2 : cellHeight
+ cellWidth: 142
+ cellHeight: 46
+ implicitHeight: width < 284 ? cellHeight * 5 : width < 426 ? cellHeight * 3 : width < 710 ? cellHeight * 2 : cellHeight
model: ["Web Design", "Development", "Graphic Design", "Marketing", "Finance"]
delegate: Label {
text: modelData
+ font {
+ family: doesntEmbed ? "Roboto" : regular.name
+ pointSize: 15
+ }
height: 38
topPadding: 8
leftPadding: 16
- rightPadding: tabs.width < 532 ? 64 : 24
- rightInset: tabs.width < 532 ? 48 : 8
- bottomPadding: tabs.width < 532 ? 8 : 16
- bottomInset: tabs.width < 532 ? 0 : 8
+ rightPadding: 16
+ bottomPadding: 8
background: Rectangle {
color: "#066ac9"
radius: 5.2