From 95056dbf92000599eb0c1f9113d8bb1173a17c3f Mon Sep 17 00:00:00 2001 From: Dane Johnson Date: Sat, 25 Feb 2023 11:13:53 -0600 Subject: [PATCH] Capitalize categories, show and italicize answer for host --- src/display/ClueDisplay.tsx | 4 +++- src/host/ActiveClue.tsx | 1 + src/host/CluesDisplay.tsx | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/display/ClueDisplay.tsx b/src/display/ClueDisplay.tsx index 289bc1e..ba05e79 100644 --- a/src/display/ClueDisplay.tsx +++ b/src/display/ClueDisplay.tsx @@ -15,7 +15,9 @@ const ClueDisplay = ({ activeClue }: Props) => { }, []); return ( <> -
{activeClue.question}
+
+ {activeClue.question} +
); diff --git a/src/host/ActiveClue.tsx b/src/host/ActiveClue.tsx index eed1877..5fd9085 100644 --- a/src/host/ActiveClue.tsx +++ b/src/host/ActiveClue.tsx @@ -30,6 +30,7 @@ const ActiveClue = ({ activeClue }: Props) => { return (

{activeClue.question}

+

{activeClue.answer}

{mode === "reading" && ( diff --git a/src/host/CluesDisplay.tsx b/src/host/CluesDisplay.tsx index 15348f7..66200c8 100644 --- a/src/host/CluesDisplay.tsx +++ b/src/host/CluesDisplay.tsx @@ -18,7 +18,7 @@ const CluesDisplay = () => { {categories.map(({ name }) => ( -

{name}

+

{name}

{[200, 400, 600, 800, 1000].map((value) => (