diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2026-01-03 18:53:17 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2026-01-03 18:53:17 +1100 |
| commit | 26943eebc7d5c276c74e9a201d6b0b7b7da01591 (patch) | |
| tree | 5053c949c373c1a8c4ba2e04e1c75a1f505ec88e | |
| parent | dashboard: fix scrolling between panes (diff) | |
| download | caelestia-shell-26943eebc7d5c276c74e9a201d6b0b7b7da01591.tar.gz caelestia-shell-26943eebc7d5c276c74e9a201d6b0b7b7da01591.tar.bz2 caelestia-shell-26943eebc7d5c276c74e9a201d6b0b7b7da01591.zip | |
weather: use tPalette for containers
| -rw-r--r-- | modules/dashboard/Weather.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/dashboard/Weather.qml b/modules/dashboard/Weather.qml index fd1caa4..3018567 100644 --- a/modules/dashboard/Weather.qml +++ b/modules/dashboard/Weather.qml @@ -1,7 +1,6 @@ import qs.components import qs.services import qs.config -import qs.utils import QtQuick import QtQuick.Layouts @@ -160,7 +159,7 @@ Item { implicitHeight: forecastItemColumn.implicitHeight + Appearance.padding.normal * 2 radius: Appearance.rounding.normal - color: Colours.palette.m3surfaceContainer + color: Colours.tPalette.m3surfaceContainer ColumnLayout { id: forecastItemColumn @@ -215,7 +214,7 @@ Item { Layout.fillWidth: true Layout.preferredHeight: 60 radius: Appearance.rounding.small - color: Colours.palette.m3surfaceContainer + color: Colours.tPalette.m3surfaceContainer Row { anchors.centerIn: parent @@ -254,6 +253,7 @@ Item { property string label property string value property color colour + spacing: Appearance.spacing.small MaterialIcon { @@ -261,6 +261,7 @@ Item { font.pointSize: Appearance.font.size.extraLarge color: weatherStat.colour } + Column { StyledText { text: weatherStat.label |