diff --git a/app/onboarding/page.tsx b/app/onboarding/page.tsx index 2daf1e1..5be828f 100644 --- a/app/onboarding/page.tsx +++ b/app/onboarding/page.tsx @@ -28,7 +28,7 @@ const stateOptions: DropdownOption[] = [ const gardenTypeOptions: DropdownOption[] = [ { label: 'Individual', value: 'INDIV' }, - { label: 'Community', value: 'ORG' }, + { label: 'Community/Organization', value: 'ORG' }, { label: 'School', value: 'SCHOOL' }, ]; @@ -228,20 +228,18 @@ const ReviewPage = ({ return ( - +
- -

- Review & Submit -

-
+

+ Review & Submit +

Your Responses @@ -265,12 +263,11 @@ const ReviewPage = ({ options={plotOptions} onChange={value => setSelectedPlot(value === true)} // Convert the value as needed /> -
- - Let's Start Growing ! - - +
+ + Let's Start Growing! + ); }; diff --git a/app/onboarding/styles.ts b/app/onboarding/styles.ts index 501881c..e98e6b5 100644 --- a/app/onboarding/styles.ts +++ b/app/onboarding/styles.ts @@ -27,7 +27,7 @@ export const ContentContainer = styled.div` export const QuestionDiv = styled.div` display: flex; flex-direction: column; - min-height: 60px; + height: max(60px, max-content); align-items: center; justify-content: end; align-content: center;