diff options
Diffstat (limited to 'modern/src/reports/ReplayPage.js')
-rw-r--r-- | modern/src/reports/ReplayPage.js | 9 |
1 files changed, 2 insertions, 7 deletions
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 |