diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-21 21:40:05 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-21 21:40:05 +0800 |
commit | c683137864917a64cb0632007ea59dcb478622bc (patch) | |
tree | 3a4ef75a9c06c82def01fbd204fb0e0a77a33836 /imports/Bootstrap | |
parent | d8b87b4215aa1d67eb2e7462d66fb21774de82bf (diff) |
Move card to default home folder
Diffstat (limited to 'imports/Bootstrap')
-rw-r--r-- | imports/Bootstrap/Bootstrap.qml | 7 |
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 }) } |