💄 Improve welcom dialog
        Tim Izzo tim@octree.ch
        
        
        
        
        
        Wed, 15 Dec 2021 11:51:07 +0100
        
          1 files changed,
          10 insertions(+),
          3 deletions(-)
          
          
        
            
            
            
            M
            
          
          frontend/containers/WelcomeDialog/index.tsx
          
            → 
            frontend/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>