mirror of
https://github.com/stemoretti/BaseUI.git
synced 2026-02-06 23:41:05 -05:00
Heavy changes
This commit is contained in:
18
qml/SettingsSectionTitle.qml
Normal file
18
qml/SettingsSectionTitle.qml
Normal file
@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user