Increase font on wind and humidity texts

This commit is contained in:
Nebojsa Vuksic 2025-07-29 15:47:26 +02:00
parent 2a0daaa806
commit da436500bf

View File

@ -149,7 +149,7 @@ internal fun WeatherDetailsCard(
currentWeatherForecast.windDirection.label
),
color = textColor,
fontSize = 16.sp
fontSize = 18.sp,
)
// Humidity info
@ -159,7 +159,7 @@ internal fun WeatherDetailsCard(
currentWeatherForecast.humidity
),
color = textColor,
fontSize = 16.sp
fontSize = 18.sp,
)
}