diff --git a/components/hydro/hydro-page.tsx b/components/hydro/hydro-page.tsx index bee2f2d..6bfec84 100644 --- a/components/hydro/hydro-page.tsx +++ b/components/hydro/hydro-page.tsx @@ -34,7 +34,7 @@ export function HydroPage() {

{t("hydro.results", { total: filteredStations.length, visible: Math.min(visibleCount, filteredStations.length) })}

{!filteredStations.length ? : ( diff --git a/components/weather/location-search.tsx b/components/weather/location-search.tsx index ad5bd5a..b29a170 100644 --- a/components/weather/location-search.tsx +++ b/components/weather/location-search.tsx @@ -57,7 +57,7 @@ export function LocationSearch({ stations, positions }: { stations: SynopStation onBlur={() => window.setTimeout(() => setIsFocused(false), 150)} placeholder={t("location.placeholder")} autoComplete="off" - className="w-full rounded-card border border-border/70 bg-surface-raised/80 py-3.5 pl-10 pr-10 text-sm placeholder:text-muted focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-accent" + className="w-full rounded-card border border-border/70 bg-surface-raised/80 py-3.5 pl-10 pr-10 text-base placeholder:text-muted focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-accent sm:text-sm" /> {query && }