mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
15 lines
289 B
QML
15 lines
289 B
QML
import QtQuick
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
Text {
|
|
id: root
|
|
|
|
readonly property real scaling: Scaling.scale(screen)
|
|
|
|
font.family: Settings.data.ui.fontFamily
|
|
font.pointSize: Style.fontSizeMedium * scaling
|
|
font.weight: Style.fontWeightRegular
|
|
color: Colors.mOnSurface
|
|
}
|