mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-06 06:16:29 +00:00
15 lines
277 B
QML
15 lines
277 B
QML
import QtQuick
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
Text {
|
|
id: root
|
|
|
|
readonly property real scaling: Scaling.scale(screen)
|
|
|
|
font.family: Settings.settings.fontFamily
|
|
font.pointSize: Style.fontSizeMedium * scaling
|
|
font.weight: Font.Bold
|
|
color: Colors.textPrimary
|
|
}
|