Skip to content

Commit

Permalink
Merge pull request #230 from oaknational/feat/PUPIL-864/add-quiz-hint…
Browse files Browse the repository at this point in the history
…s-to-quizzes

[PUPIL-864] Updating the quiz hint tooltip position
  • Loading branch information
BTitterington authored Jul 16, 2024
2 parents b06d57c + 15c58f6 commit 93d3e03
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/organisms/pupil/OakQuizHint/OakQuizHint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ export const OakQuizHint = ({ hint }: OakQuizHintProps) => {
};

return (
<OakTooltip tooltip={hint} isOpen={isOpen} id="hint-tooltip">
<OakTooltip
tooltip={hint}
isOpen={isOpen}
id="hint-tooltip"
tooltipPosition="top-left"
>
<OakHintButton
isOpen={isOpen}
onClick={handleClick}
Expand Down

0 comments on commit 93d3e03

Please sign in to comment.