mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 12:39:35 +02:00
18 lines
456 B
QML
18 lines
456 B
QML
import QtQuick
|
|
|
|
// Small-caps-style label that introduces a panel section ("DNS provider",
|
|
// "Wi-Fi networks", "Output device", "Paired devices"). Sits between a
|
|
// PanelSeparator and the content rows.
|
|
Text {
|
|
id: root
|
|
|
|
property color foreground: "#cacccc"
|
|
property string fontFamily: "JetBrainsMono Nerd Font"
|
|
property real fontSize: 10
|
|
|
|
color: Qt.darker(foreground, 1.4)
|
|
font.family: fontFamily
|
|
font.pixelSize: fontSize
|
|
font.bold: true
|
|
}
|