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 currentWeatherForecast.windDirection.label
), ),
color = textColor, color = textColor,
fontSize = 16.sp fontSize = 18.sp,
) )
// Humidity info // Humidity info
@ -159,7 +159,7 @@ internal fun WeatherDetailsCard(
currentWeatherForecast.humidity currentWeatherForecast.humidity
), ),
color = textColor, color = textColor,
fontSize = 16.sp fontSize = 18.sp,
) )
} }