From f3a23bb3110c4a1341eb7a8383817fde0bf31036 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sun, 22 Sep 2024 07:12:53 -0700 Subject: [PATCH] Take temp font down a couple of sizes --- Meshtastic/Views/Helpers/Weather/LocalWeatherConditions.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Helpers/Weather/LocalWeatherConditions.swift b/Meshtastic/Views/Helpers/Weather/LocalWeatherConditions.swift index 3ea1dee3..e4867544 100644 --- a/Meshtastic/Views/Helpers/Weather/LocalWeatherConditions.swift +++ b/Meshtastic/Views/Helpers/Weather/LocalWeatherConditions.swift @@ -106,7 +106,7 @@ struct WeatherConditionsCompactWidget: View { .font(.caption) } Text(temperature) - .font(temperature.length < 4 ? .system(size: 76) : .system(size: 60) ) + .font(temperature.length < 4 ? .system(size: 72) : .system(size: 54) ) } .frame(minWidth: 100, idealWidth: 125, maxWidth: 150, minHeight: 120, idealHeight: 130, maxHeight: 140) .padding()