From 951098540c12c08d9dc9ced4fe619564fb037944 Mon Sep 17 00:00:00 2001 From: Resistencia Dev Date: Fri, 5 Dec 2025 23:34:21 +0100 Subject: [PATCH] Fix: MissionReveal con tics blancos y mejor layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Cambiar text-4xl a text-5xl para tics más grandes - Agregar text-white para que los tics sean blancos - Agregar font-bold para mejor visibilidad - Mejorar layout con flex-col - Agregar mensaje informativo --- client/src/components/MissionReveal.tsx | 33 ++++++++++++------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/client/src/components/MissionReveal.tsx b/client/src/components/MissionReveal.tsx index 2eb026d..6d3ad67 100644 --- a/client/src/components/MissionReveal.tsx +++ b/client/src/components/MissionReveal.tsx @@ -7,27 +7,26 @@ interface MissionRevealProps { export default function MissionReveal({ votes }: MissionRevealProps) { return ( -
-

Resultados de la Misión

-
- {votes.map((vote, idx) => ( - - {vote ? '✓' : '✗'} - - ))} -
+

Resultados de la Misión

+
+ {votes.map((vote, idx) => ( + + {vote ? '✓' : '✗'} + + ))}
+

Los resultados se revelarán automáticamente...

); }