From da436500bffdb9c910f8e168ec7861d453537456 Mon Sep 17 00:00:00 2001 From: Nebojsa Vuksic Date: Tue, 29 Jul 2025 15:47:26 +0200 Subject: [PATCH] Increase font on wind and humidity texts --- .../template/weatherApp/ui/components/WeatherDetailsCard.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/ui/components/WeatherDetailsCard.kt b/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/ui/components/WeatherDetailsCard.kt index 1f0db7d..0347950 100644 --- a/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/ui/components/WeatherDetailsCard.kt +++ b/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/ui/components/WeatherDetailsCard.kt @@ -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, ) }