Skip to content

Commit

Permalink
align welcome back buttons with general scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
wbglaeser committed Nov 10, 2024
1 parent d838d9d commit b36384b
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions src/screens/info-screen/InfoScreenNewOrExistingUser.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,17 @@ const InfoScreenNewOrExistingUser = () => {
<Button variant="text"
sx={{
fontSize: '16px',
color: 'white',
color: 'black',
fontWeight: 'bold',
textTransform: 'none',
padding: '12px',
borderRadius: '12px',
backgroundColor: globalStyles.colorPineGreen,
backgroundColor: 'white',
borderStyle: 'solid',
borderWidth: '1px',
borderColor: globalStyles.primaryColor,
'&:hover': {
color: 'black', // Change text color to black on hover
backgroundColor: globalStyles.primaryColor,
},
}}
onClick={continueWithExisting}
Expand All @@ -144,22 +147,25 @@ const InfoScreenNewOrExistingUser = () => {
{t("app.welcomeBack.yesBtnText")}
</Typography>
</VStack>
<ArrowForwardIcon sx={{color: 'white', fontSize: 30, flex: 1}}/>
<ArrowForwardIcon sx={{color: 'black', fontSize: 30, flex: 1}}/>
</HStack>
</Button>
</HStack>
<HStack>
<Button variant="text"
sx={{
fontSize: '16px',
color: 'white',
color: 'black',
fontWeight: 'bold',
textTransform: 'none',
padding: '16px',
padding: '12px',
borderRadius: '12px',
backgroundColor: globalStyles.colorSteelBlue,
backgroundColor: 'white',
borderStyle: 'solid',
borderWidth: '1px',
borderColor: globalStyles.primaryColor,
'&:hover': {
color: 'black', // Change text color to black on hover
backgroundColor: globalStyles.primaryColor,
},
}}
onClick={startOver}
Expand All @@ -173,7 +179,7 @@ const InfoScreenNewOrExistingUser = () => {
{t("app.welcomeBack.noBtnText")}
</Typography>
</VStack>
<ReplayIcon sx={{color: 'white', fontSize: 30, flex: 1}}/>
<ReplayIcon sx={{color: 'black', fontSize: 30, flex: 1}}/>
</HStack>
</Button>
</HStack>
Expand Down

0 comments on commit b36384b

Please sign in to comment.