Skip to content

Commit

Permalink
feat: 응답의 tooltip 위치 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
2jun0 committed Feb 20, 2024
1 parent 75f9afa commit 73e90bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/daily/[page]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@ export default function DailyQuiz() {
return (
answers[i] ?
answers[i].correct ?
<Tooltip key={`answer ${i} success`} content={answers[i]?.answer} color="success">
<Tooltip key={`answer ${i} success`} content={answers[i]?.answer} color="success" placement="bottom">
<Button className="min-w-11 w-11 h-11 rounded-medium" color="success"></Button>
</Tooltip>
:
<Tooltip key={`answer ${i} danger`} content={answers[i]?.answer} color="danger">
<Tooltip key={`answer ${i} danger`} content={answers[i]?.answer} color="danger" placement="bottom">
<Button className="min-w-11 w-11 h-11 rounded-medium" color="danger"></Button>
</Tooltip>
:
Expand Down

0 comments on commit 73e90bc

Please sign in to comment.