From aa93723fcd80a2d1e013f3c408edf83b75be63c9 Mon Sep 17 00:00:00 2001 From: Ivan Chen Date: Fri, 26 Feb 2021 20:49:42 -0500 Subject: updated wizard and exported modal style --- src/components/onboarding/RegistrationWizard.tsx | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) (limited to 'src/components') diff --git a/src/components/onboarding/RegistrationWizard.tsx b/src/components/onboarding/RegistrationWizard.tsx index 437e7cfb..3c6ca80e 100644 --- a/src/components/onboarding/RegistrationWizard.tsx +++ b/src/components/onboarding/RegistrationWizard.tsx @@ -37,16 +37,6 @@ const RegistrationWizard = (props: RegistrationWizardProps) => { - - - - - - - - )} @@ -60,16 +50,6 @@ const RegistrationWizard = (props: RegistrationWizardProps) => { - - - - - - - - )} @@ -94,7 +74,7 @@ const styles = StyleSheet.create({ backgroundColor: '#e1f0ff', }, progress: { - width: '10%', + width: '35%', height: 2, backgroundColor: '#e1f0ff', }, -- cgit v1.2.3-70-g09d2 From 3af796dc78f94c421e1d941432b218827458537c Mon Sep 17 00:00:00 2001 From: Ivan Chen Date: Fri, 26 Feb 2021 21:12:01 -0500 Subject: assets, date picker default string --- src/assets/icons/purple-plus.png | Bin 0 -> 18370 bytes src/components/onboarding/BirthDatePicker.tsx | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 src/assets/icons/purple-plus.png (limited to 'src/components') diff --git a/src/assets/icons/purple-plus.png b/src/assets/icons/purple-plus.png new file mode 100644 index 00000000..8b2ce903 Binary files /dev/null and b/src/assets/icons/purple-plus.png differ diff --git a/src/components/onboarding/BirthDatePicker.tsx b/src/components/onboarding/BirthDatePicker.tsx index 6bef5798..c3a975dc 100644 --- a/src/components/onboarding/BirthDatePicker.tsx +++ b/src/components/onboarding/BirthDatePicker.tsx @@ -46,7 +46,7 @@ const BirthDatePicker = React.forwardRef( {...props}> {(updated || props.showPresetdate) && date ? moment(date).format('MM-DD-YYYY') - : 'Date of Birth'} + : 'Birthday'} @@ -92,7 +92,7 @@ const styles = StyleSheet.create({ input: { height: 40, fontSize: 16, - paddingTop: '2%', + paddingTop: 8, fontWeight: '600', borderColor: '#fffdfd', borderWidth: 2, -- cgit v1.2.3-70-g09d2