From aca19d6903775d60cb274d100c59782db54f097e Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Wed, 5 Nov 2025 10:14:17 +0100 Subject: [PATCH] adjust weather widget size --- .../background/widgets/weather/WeatherWidget.qml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/background/widgets/weather/WeatherWidget.qml b/dots/.config/quickshell/ii/modules/background/widgets/weather/WeatherWidget.qml index 8e055b542..5b598d24a 100644 --- a/dots/.config/quickshell/ii/modules/background/widgets/weather/WeatherWidget.qml +++ b/dots/.config/quickshell/ii/modules/background/widgets/weather/WeatherWidget.qml @@ -24,11 +24,11 @@ AbstractBackgroundWidget { anchors.fill: parent shape: MaterialShape.Shape.Pill color: Appearance.colors.colPrimaryContainer - implicitSize: 230 + implicitSize: 200 StyledText { font { - pixelSize: 84 + pixelSize: 80 family: Appearance.font.family.expressive weight: Font.Medium } @@ -37,21 +37,21 @@ AbstractBackgroundWidget { anchors { right: parent.right top: parent.top - rightMargin: 26 - topMargin: 30 + rightMargin: 20 + topMargin: 24 } } MaterialSymbol { - iconSize: 84 + iconSize: 80 color: Appearance.colors.colOnPrimaryContainer text: Icons.getWeatherIcon(Weather.data.wCode) ?? "cloud" anchors { left: parent.left bottom: parent.bottom - leftMargin: 26 - bottomMargin: 30 + leftMargin: 20 + bottomMargin: 24 } } }