Skip to content

Commit 3c48d9a

Browse files
Merge pull request #1104 from Ayoazeez26/feat/modify-quiz-defeat-page
Feat/modify quiz defeat page
2 parents 40ec873 + 39d359b commit 3c48d9a

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

components/quiz/endScreen.tsx

+19-15
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ const EndScreen: FunctionComponent<EndScreenProps> = ({
3030
actionBar={
3131
<Button onClick={() => setStep(-2)}>Go back to the quest</Button>
3232
}
33-
highlightTitle={false}
34-
>
35-
<Typography type={TEXT_TYPE.BODY_SMALL} className="text-white/50 text-sm/6 mt-3">
33+
highlightTitle={false}>
34+
<Typography
35+
type={TEXT_TYPE.BODY_SMALL}
36+
className="text-white/50 text-sm/6 mt-3">
3637
You passed the quiz. Congratulations on your efforts and progress!
3738
Keep up the good work and continue to explore new challenges.
3839
</Typography>
@@ -45,21 +46,24 @@ const EndScreen: FunctionComponent<EndScreenProps> = ({
4546
title="Too bad ! "
4647
actionBar={
4748
<>
48-
<div className={styles.soft}>
49-
<Button onClick={() => setStep(-2)}>
50-
Go back to the quest
51-
</Button>
52-
</div>
53-
<div>
54-
<Button onClick={() => setRestart(true)}>
55-
Restart the quiz
56-
</Button>
49+
<div className="flex gap-6">
50+
<div className={styles.soft}>
51+
<Button onClick={() => setStep(-2)}>
52+
Go back to the quest
53+
</Button>
54+
</div>
55+
<div>
56+
<Button onClick={() => setRestart(true)}>
57+
Restart the quiz
58+
</Button>
59+
</div>
5760
</div>
5861
</>
5962
}
60-
highlightTitle={false}
61-
>
62-
<Typography type={TEXT_TYPE.BODY_DEFAULT}>
63+
highlightTitle={false}>
64+
<Typography
65+
type={TEXT_TYPE.BODY_SMALL}
66+
className="text-white/50 text-sm/6 mt-3">
6367
You didn&apos;t pass the quiz. You can try again or go back to the
6468
quest.
6569
</Typography>

0 commit comments

Comments
 (0)