diff --git a/src/components/ProgressBar.tsx b/src/components/ProgressBar.tsx
index d96c8e6..952331b 100644
--- a/src/components/ProgressBar.tsx
+++ b/src/components/ProgressBar.tsx
@@ -11,6 +11,7 @@ const ProgressBar = ({ completed }: ProgressBarProps) => {
backgroundColor: "yellowGreen",
borderRadius: "inherit",
transition: "width 1s ease-in-out",
+ minHeight: "100%",
};
return (
diff --git a/src/components/SummaryQuestionAnswer.tsx b/src/components/SummaryQuestionAnswer.tsx
new file mode 100644
index 0000000..a521ebc
--- /dev/null
+++ b/src/components/SummaryQuestionAnswer.tsx
@@ -0,0 +1,20 @@
+import { Key } from "react";
+
+interface SummaryQuestionAnswerProps {
+ question: string;
+ answer: string;
+ key?: Key;
+}
+
+export default function SummaryQuestionAnswer({
+ question,
+ answer,
+ key,
+}: SummaryQuestionAnswerProps) {
+ return (
+
+ {question}
+ {answer}
+
+ );
+}
diff --git a/src/components/survey/demographicssurvey.tsx b/src/components/survey/demographicssurvey.tsx
index cd7fbe4..00f7c83 100644
--- a/src/components/survey/demographicssurvey.tsx
+++ b/src/components/survey/demographicssurvey.tsx
@@ -172,7 +172,7 @@ export default function DemographicsSurvey() {
>
Retake demographic survey
-
+