diff options
Diffstat (limited to 'modern')
-rw-r--r-- | modern/src/map/ReplayPathMap.js | 4 | ||||
-rw-r--r-- | modern/src/reports/ReplayPage.js | 9 |
2 files changed, 4 insertions, 9 deletions
diff --git a/modern/src/map/ReplayPathMap.js b/modern/src/map/ReplayPathMap.js index 022548b7..971c2b36 100644 --- a/modern/src/map/ReplayPathMap.js +++ b/modern/src/map/ReplayPathMap.js @@ -25,8 +25,8 @@ const ReplayPathMap = ({ positions }) => { 'line-cap': 'round', }, paint: { - 'line-color': '#333', - 'line-width': 5, + 'line-color': '#3bb2d0', + 'line-width': 2, }, }); diff --git a/modern/src/reports/ReplayPage.js b/modern/src/reports/ReplayPage.js index 08563b3a..d7c77ee8 100644 --- a/modern/src/reports/ReplayPage.js +++ b/modern/src/reports/ReplayPage.js @@ -21,9 +21,6 @@ const useStyles = makeStyles((theme) => ({ root: { height: '100vh', }, - title: { - ...theme.typography.title, - }, sidebar: { position: 'absolute', left: 0, @@ -130,9 +127,7 @@ const ReplayPage = () => { </IconButton> </Grid> <Grid item xs> - <Typography className={classes.replay} color="primary"> - {t('reportReplay')} - </Typography> + <Typography variant="h6">{t('reportReplay')}</Typography> </Grid> {!expanded && ( <Grid item> @@ -150,7 +145,7 @@ const ReplayPage = () => { <Paper className={classes.sliderContainer}> <Grid container direction="column" alignItems="center"> <Grid item> - <span className={classes.title}>{deviceName}</span> + {deviceName} </Grid> <Grid item style={{ width: '100%' }}> <Slider |