mirror of
https://github.com/stemoretti/BaseUI.git
synced 2025-05-25 07:10:23 -04:00
19 lines
412 B
QML
19 lines
412 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
|
|
Label {
|
|
leftPadding: 16
|
|
topPadding: 6
|
|
bottomPadding: 6
|
|
font.bold: true
|
|
font.pixelSize: Style.fontSizeBodyAndButton
|
|
color: Style.isDarkTheme ? "white" : Qt.lighter("gray", 1.1)
|
|
|
|
background: Rectangle {
|
|
color: Style.isDarkTheme ? Qt.darker("gray") : Qt.lighter("lightgray", 1.1)
|
|
}
|
|
|
|
Layout.fillWidth: true
|
|
}
|