From caf5c95f3648b278e872c06419693c4b71cfae22 Mon Sep 17 00:00:00 2001 From: eelkus01 <130937420+eelkus01@users.noreply.github.com> Date: Thu, 27 Jun 2024 09:35:26 -0400 Subject: [PATCH] final style fixes --- client/src/pages/ballotInfo/[candidate].tsx | 8 ++++---- client/src/pages/ballotInfo/index.tsx | 2 +- .../pages/ballotInfo/whatsOnTheBallot/ballotInitative.tsx | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/client/src/pages/ballotInfo/[candidate].tsx b/client/src/pages/ballotInfo/[candidate].tsx index f050f1b3..962af7c3 100644 --- a/client/src/pages/ballotInfo/[candidate].tsx +++ b/client/src/pages/ballotInfo/[candidate].tsx @@ -165,10 +165,10 @@ export default function Candidate() { {/* Actual candidate data */}
{candidateData ? ( -
+
-
+
@@ -222,7 +222,7 @@ export default function Candidate() { {/* Questions and Answers if filled out */} {Object.entries(questionsAndAnswers) &&
-

Questions curated by the founder, journalist Yawu Miller

+

Questions curated by the founder, journalist Yawu Miller

{Object.entries(questionsAndAnswers).map(([index, qa]) => ( qa.question && qa.answer ? ( @@ -234,7 +234,7 @@ export default function Candidate() { {/* Answer */} - {qa.answer} + {qa.answer} ) : null diff --git a/client/src/pages/ballotInfo/index.tsx b/client/src/pages/ballotInfo/index.tsx index fdfc1c06..8df3ac03 100644 --- a/client/src/pages/ballotInfo/index.tsx +++ b/client/src/pages/ballotInfo/index.tsx @@ -69,7 +69,7 @@ export default function BallotInfo() { ) : ( -

Please fill out the address form above and select an election to see your ballot information

+

Please fill out the address form above and select an election to see your ballot information.

)}
diff --git a/client/src/pages/ballotInfo/whatsOnTheBallot/ballotInitative.tsx b/client/src/pages/ballotInfo/whatsOnTheBallot/ballotInitative.tsx index f47a4170..7e30cf26 100644 --- a/client/src/pages/ballotInfo/whatsOnTheBallot/ballotInitative.tsx +++ b/client/src/pages/ballotInfo/whatsOnTheBallot/ballotInitative.tsx @@ -131,7 +131,7 @@ export default function BallotInitiative() { What is a vote YES? -
    +
      {item.WhatIsYes.split('\n').map((line, index) => (
    • {line}
    • ))} @@ -143,7 +143,7 @@ export default function BallotInitiative() { What is a vote NO? -
        +
          {item.WhatIsNo.split('\n').map((line, index) => (
        • {line}
        • ))}