From 76e21326e5a0beab0ffdeee8ffb5e210bb59914a Mon Sep 17 00:00:00 2001 From: Brandon Egger Date: Tue, 11 Apr 2023 01:54:12 -0500 Subject: [PATCH] improve survey UX --- src/components/Survey.tsx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/components/Survey.tsx b/src/components/Survey.tsx index 3543983..97cc672 100644 --- a/src/components/Survey.tsx +++ b/src/components/Survey.tsx @@ -125,8 +125,8 @@ const QuestionPage = ({isLastPage, page, question, updatePage, formData, updateF
{!isLastPage ?
- - + +
:
@@ -139,10 +139,11 @@ const QuestionPage = ({isLastPage, page, question, updatePage, formData, updateF }; return ( -
-
-

-

{question.question}

+
+
+

{question.header}

+

{question.question}

+

Select all that apply from below

@@ -157,7 +158,9 @@ const QuestionPage = ({isLastPage, page, question, updatePage, formData, updateF No Preference : undefined} - +
+ +
) }