diff --git a/src/components/cards/WeatherCard.astro b/src/components/cards/WeatherCard.astro index c48d61e..1369255 100644 --- a/src/components/cards/WeatherCard.astro +++ b/src/components/cards/WeatherCard.astro @@ -10,7 +10,7 @@ const { dayName, label, icon, temp } = Astro.props; ---
-
+
{dayName} diff --git a/src/components/sections/WeatherSection.astro b/src/components/sections/WeatherSection.astro index 04adaf3..8f03b05 100644 --- a/src/components/sections/WeatherSection.astro +++ b/src/components/sections/WeatherSection.astro @@ -24,13 +24,15 @@ const { forecastDays, error } = await getFiveDayForecast(latitude, longitude, ti
) : (
- {forecastDays.map((forecastDay) => ( - + {forecastDays.map((forecastDay, index) => ( +
= 4 ? "hidden min-[1100px]:block" : ""}> + +
))}
)}