diff options
Diffstat (limited to 'Label')
-rw-r--r-- | Label/Body.ui.qml | 12 | ||||
-rw-r--r-- | Label/Hx.ui.qml | 12 |
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 + } +} |