13 lines
269 B
QML
13 lines
269 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import ISC
|
|
|
|
// Uppercase card heading — shared by the Data tab cards.
|
|
Label {
|
|
font.family: Theme.uiFontFamily
|
|
font.pixelSize: Theme.fontSm
|
|
font.letterSpacing: 1.5
|
|
font.bold: true
|
|
color: Theme.sideMutedText
|
|
}
|