blob: 76d0bbe1c6204622cafb2703755529c448a30fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
}
}
|