diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-24 17:14:38 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-24 17:14:38 +0800 |
| commit | 787fde09ef0d7ab3df8656f6c0190e8f86e9db81 (patch) | |
| tree | 9f7733b7d157eabd84b4b3978d5f86acfa58cb1e /modules/dashboard | |
| parent | refactor: path utils (diff) | |
| download | caelestia-shell-787fde09ef0d7ab3df8656f6c0190e8f86e9db81.tar.gz caelestia-shell-787fde09ef0d7ab3df8656f6c0190e8f86e9db81.tar.bz2 caelestia-shell-787fde09ef0d7ab3df8656f6c0190e8f86e9db81.zip | |
dashboard: fix calendar size
Diffstat (limited to 'modules/dashboard')
| -rw-r--r-- | modules/dashboard/Dash.qml | 1 | ||||
| -rw-r--r-- | modules/dashboard/dash/Weather.qml | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/modules/dashboard/Dash.qml b/modules/dashboard/Dash.qml index 5e619a3..4f96258 100644 --- a/modules/dashboard/Dash.qml +++ b/modules/dashboard/Dash.qml @@ -18,7 +18,6 @@ GridLayout { } Rect { - // Layout.column: 3 Layout.row: 0 Layout.columnSpan: 2 Layout.preferredWidth: DashboardConfig.sizes.weatherWidth diff --git a/modules/dashboard/dash/Weather.qml b/modules/dashboard/dash/Weather.qml index 3c48aee..849929e 100644 --- a/modules/dashboard/dash/Weather.qml +++ b/modules/dashboard/dash/Weather.qml @@ -42,7 +42,7 @@ Item { animate: true text: root.icon || "cloud_alert" color: Colours.palette.m3secondary - font.pointSize: root.parent.height / 2 || 1 + font.pointSize: Appearance.font.size.extraLarge * 2 } Column { |