From 0de5a3bd8c028a248233bb2d280279535b82e1c4 Mon Sep 17 00:00:00 2001 From: Joey Yakimowich-Payne Date: Sun, 25 Jan 2026 07:55:39 -0700 Subject: [PATCH] Fix mobile host screen maybe --- components/RevealScreen.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/components/RevealScreen.tsx b/components/RevealScreen.tsx index b3812cf..8bd7043 100644 --- a/components/RevealScreen.tsx +++ b/components/RevealScreen.tsx @@ -71,13 +71,13 @@ export const RevealScreen: React.FC = ({ const colorClass = COLORS[correctOption.color]; return ( -
+
The correct answer is @@ -86,12 +86,12 @@ export const RevealScreen: React.FC = ({ initial={{ scale: 0, rotate: -10 }} animate={{ scale: 1, rotate: 0 }} transition={{ type: "spring", bounce: 0.5 }} - className={`${colorClass} p-12 rounded-[3rem] shadow-[0_20px_0_rgba(0,0,0,0.3)] flex flex-col items-center max-w-4xl w-full border-8 border-white/20 relative z-10`} + className={`${colorClass} p-6 md:p-12 rounded-2xl md:rounded-[3rem] shadow-[0_10px_0_rgba(0,0,0,0.3)] md:shadow-[0_20px_0_rgba(0,0,0,0.3)] flex flex-col items-center max-w-4xl w-full border-4 md:border-8 border-white/20 relative z-10`} > -
- +
+
-

+

{correctOption.text}

{correctOption.reason && ( @@ -99,7 +99,7 @@ export const RevealScreen: React.FC = ({ initial={{ opacity: 0 }} animate={{ opacity: 1 }} transition={{ delay: 0.3 }} - className="mt-6 text-xl md:text-2xl text-center opacity-90 bg-black/20 px-6 py-4 rounded-2xl max-w-2xl" + className="mt-3 md:mt-6 text-base md:text-2xl text-center opacity-90 bg-black/20 px-4 md:px-6 py-2 md:py-4 rounded-xl md:rounded-2xl max-w-2xl" > {correctOption.reason} @@ -112,10 +112,10 @@ export const RevealScreen: React.FC = ({ animate={{ opacity: 1, y: 0 }} transition={{ delay: 0.5 }} onClick={onNext} - className="mt-12 bg-white text-gray-900 px-8 py-4 rounded-2xl text-xl font-black shadow-[0_6px_0_rgba(0,0,0,0.3)] active:shadow-none active:translate-y-[6px] transition-all flex items-center gap-2 hover:bg-gray-100 relative z-10 cursor-pointer" + className="mt-6 md:mt-12 bg-white text-gray-900 px-6 md:px-8 py-3 md:py-4 rounded-xl md:rounded-2xl text-base md:text-xl font-black shadow-[0_6px_0_rgba(0,0,0,0.3)] active:shadow-none active:translate-y-[6px] transition-all flex items-center gap-2 hover:bg-gray-100 relative z-10 cursor-pointer" > Continue to Scoreboard - + )}