summaryrefslogtreecommitdiff
path: root/imports/Bootstrap
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-21 21:40:05 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-21 21:40:05 +0800
commitc683137864917a64cb0632007ea59dcb478622bc (patch)
tree3a4ef75a9c06c82def01fbd204fb0e0a77a33836 /imports/Bootstrap
parentd8b87b4215aa1d67eb2e7462d66fb21774de82bf (diff)
Move card to default home folder
Diffstat (limited to 'imports/Bootstrap')
-rw-r--r--imports/Bootstrap/Bootstrap.qml7
1 files changed, 5 insertions, 2 deletions
diff --git a/imports/Bootstrap/Bootstrap.qml b/imports/Bootstrap/Bootstrap.qml
index 3afa941..a7a2951 100644
--- a/imports/Bootstrap/Bootstrap.qml
+++ b/imports/Bootstrap/Bootstrap.qml
@@ -2,6 +2,8 @@ pragma Singleton
import QtQuick 2.15
QtObject {
+ readonly property real badgeFontSize: 13.6
+
readonly property color btnColor: "#ffffff"
readonly property color btnBg: "#066ac9"
readonly property color btnActiveBg: "#0555a1"
@@ -20,11 +22,12 @@ QtObject {
}
readonly property font bodyFont: Qt.font({
family: haveRoboto ? "Roboto" : regular.name,
+ weight: Font.Normal,
pointSize: 15
})
readonly property font btnFont: Qt.font({
family: haveRoboto ? "Roboto" : medium.name,
- pointSize: 15,
- weight: Font.Medium
+ weight: Font.Medium,
+ pointSize: 15
})
}