summaryrefslogtreecommitdiff
path: root/Label
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-22 11:43:55 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-22 11:43:55 +0800
commitdecd806617971b08256fe8d64b0401be11d79c28 (patch)
tree9ffe72922dc7a0823effed0404f3894fc40fe4ce /Label
parentfbfd1ff47a46dd6a245d16933fa4e23765864240 (diff)
hx & body labels, & its use in course detail
Diffstat (limited to 'Label')
-rw-r--r--Label/Body.ui.qml12
-rw-r--r--Label/Hx.ui.qml12
2 files changed, 24 insertions, 0 deletions
diff --git a/Label/Body.ui.qml b/Label/Body.ui.qml
new file mode 100644
index 0000000..76d0bbe
--- /dev/null
+++ b/Label/Body.ui.qml
@@ -0,0 +1,12 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+import Bootstrap 5.3
+
+Label {
+ wrapMode: Label.Wrap
+ font {
+ family: Bootstrap.bodyFont.family
+ weight: Bootstrap.bodyFont.weight
+ pointSize: Bootstrap.bodyFont.pointSize
+ }
+}
diff --git a/Label/Hx.ui.qml b/Label/Hx.ui.qml
new file mode 100644
index 0000000..5e97303
--- /dev/null
+++ b/Label/Hx.ui.qml
@@ -0,0 +1,12 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+import Eduport 1.4
+
+Label {
+ wrapMode: Label.Wrap
+ font {
+ family: Eduport.hFont.family
+ weight: Eduport.hFont.weight
+ pointSize: Eduport.h6FontSize
+ }
+}