Skip to content

Commit

Permalink
[frontend] Correct in scenario lessons learned tab (#1843)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanah29 authored Feb 7, 2025
1 parent dd8d8eb commit a5b619e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const Lessons: React.FC<Props> = ({
return (
<div style={{ marginBottom: '30px' }}>
<Grid container spacing={3}>
<Grid item xs={4}>
<Grid item xs={4} style={{ paddingTop: 10 }}>
<Typography variant="h4">{t('Parameters')}</Typography>
<Paper variant="outlined" classes={{ root: classes.paperPadding }}>
<Grid container spacing={3}>
Expand Down Expand Up @@ -187,7 +187,7 @@ const Lessons: React.FC<Props> = ({
</Grid>
</Paper>
</Grid>
<Grid item xs={8}>
<Grid item xs={8} style={{ paddingTop: 10 }}>
<LessonsObjectives
objectives={objectives}
setSelectedObjective={setSelectedObjective}
Expand Down

0 comments on commit a5b619e

Please sign in to comment.