hero icon size
All checks were successful
Docker Build & Publish / Build Docker (push) Successful in 1m7s

This commit is contained in:
ChrQR 2024-05-12 21:45:11 +02:00
parent 9745332ad9
commit 639afb9cdb

View File

@ -85,7 +85,7 @@ export default function WeatherHero() {
const weatherCode = weather.current.weather_code; const weatherCode = weather.current.weather_code;
return( return(
<> <>
<Image className="h-64 w-auto mx-auto" src={getCurrentWeatherIcon(weatherCode)} alt="Weather icon"/> <Image className="h-44 w-auto mx-auto" src={getCurrentWeatherIcon(weatherCode)} alt="Weather icon"/>
</> </>
) )
}; };