From 73219c89fb043b041909cab9be0c5cd3ec6b7b99 Mon Sep 17 00:00:00 2001 From: Froidefond Julien Date: Tue, 24 Feb 2026 18:18:28 +0100 Subject: [PATCH] fix: make evolution indicators visually prominent with badge style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace plain text-xs arrows with 20×20px colored circular badges (green ↑, red ↓, muted →) to ensure they are clearly visible next to emoji cells. Also widen emoji columns from w-24 → w-28 to give the badge room without overflow. Co-Authored-By: Claude Sonnet 4.6 --- src/components/weather/WeatherCard.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/weather/WeatherCard.tsx b/src/components/weather/WeatherCard.tsx index c90cb44..f17585e 100644 --- a/src/components/weather/WeatherCard.tsx +++ b/src/components/weather/WeatherCard.tsx @@ -48,12 +48,12 @@ function EvolutionIndicator({ if (direction === null) return null; if (direction === 'up') { - return ; + return ; } if (direction === 'down') { - return ; + return ; } - return ; + return ; } export function WeatherCard({ sessionId, currentUserId, entry, canEdit, previousEntry }: WeatherCardProps) { @@ -143,7 +143,7 @@ export function WeatherCard({ sessionId, currentUserId, entry, canEdit, previous {/* Performance */} - + {canEditThis ? (
{/* Flux */} - + {canEditThis ? (