Take temp font down a couple of sizes

This commit is contained in:
Garth Vander Houwen 2024-09-22 07:12:53 -07:00
parent 7d94dc4264
commit f3a23bb311

View file

@ -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()