Skip to content

Commit

Permalink
fix: fix size of instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
juancarlosfarah committed Apr 6, 2024
1 parent 365ee8a commit f12013d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/modules/interaction/ParticipantInteraction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ const ParticipantInteraction = (): ReactElement => {
}}
>
{interaction.participantInstructions && (
<Typography variant="h4" sx={{ p: 2, pt: 4, textAlign: 'justify' }}>
<Typography
variant="body1"
sx={{ p: 2, pt: 4, textAlign: 'justify' }}
>
{interaction.participantInstructions}
</Typography>
)}
Expand All @@ -185,7 +188,7 @@ const ParticipantInteraction = (): ReactElement => {
textAlign: 'center',
}}
>
<Typography variant="h3" sx={{ p: 10, textAlign: 'center' }}>
<Typography variant="body1" sx={{ p: 10, textAlign: 'center' }}>
{interaction.participantInstructionsOnComplete}
</Typography>
</Box>
Expand Down

0 comments on commit f12013d

Please sign in to comment.