diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-29 10:29:30 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-29 10:29:30 +1000 |
| commit | 5fd8d0f6da23030cbe043c5fd59284393781e23a (patch) | |
| tree | 718c188d60eeb2de460d6fd7d15e17814d67014b /widgets | |
| parent | refactor: move bar components into folder (diff) | |
| download | caelestia-shell-5fd8d0f6da23030cbe043c5fd59284393781e23a.tar.gz caelestia-shell-5fd8d0f6da23030cbe043c5fd59284393781e23a.tar.bz2 caelestia-shell-5fd8d0f6da23030cbe043c5fd59284393781e23a.zip | |
refactor: use anchors instead of layouts
Diffstat (limited to 'widgets')
| -rw-r--r-- | widgets/MaterialIcon.qml | 2 | ||||
| -rw-r--r-- | widgets/StyledText.qml (renamed from widgets/Label.qml) | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/widgets/MaterialIcon.qml b/widgets/MaterialIcon.qml index 55e6b99..2181f9c 100644 --- a/widgets/MaterialIcon.qml +++ b/widgets/MaterialIcon.qml @@ -1,7 +1,7 @@ import "root:/config" import QtQuick -Label { +StyledText { font.family: Appearance.font.family.material font.pointSize: Appearance.font.size.larger } diff --git a/widgets/Label.qml b/widgets/StyledText.qml index e1e22ba..ed5d791 100644 --- a/widgets/Label.qml +++ b/widgets/StyledText.qml @@ -5,6 +5,8 @@ Text { id: root renderType: Text.NativeRendering + color: Appearance.colours.text + font.family: Appearance.font.family.sans Behavior on color { ColorAnimation { |