all repos — caroster @ 70caea7a8ee55427fb58642afc034467a67256cc

[Octree] Group carpool to your event https://caroster.io

💄 Improve welcom dialog
Tim Izzo tim@octree.ch
Wed, 15 Dec 2021 11:51:07 +0100
commit

70caea7a8ee55427fb58642afc034467a67256cc

parent

2220be60c782c1c57757bd8a7ebd65e35241cd1d

1 files changed, 10 insertions(+), 3 deletions(-)

jump to
M frontend/containers/WelcomeDialog/index.tsxfrontend/containers/WelcomeDialog/index.tsx

@@ -29,15 +29,22 @@ image="/assets/Caroster_Octree_Social.jpg"

/> <DialogContent> <DialogContentText align="center"> - <Typography variant="h6">{t('tour.welcome.title')}</Typography> - {t('tour.welcome.text')} + <Typography variant="h6" color="primary"> + {t('tour.welcome.title')} + </Typography> + <Typography color="textPrimary">{t('tour.welcome.text')}</Typography> </DialogContentText> </DialogContent> <DialogActions> <Button onClick={onCancel} id="TourCancel"> {t('tour.welcome.nope')} </Button> - <Button onClick={onStartTour} id="TourConfirm"> + <Button + onClick={onStartTour} + id="TourConfirm" + variant="contained" + color="primary" + > {t('tour.welcome.onboard')} </Button> </DialogActions>