Skip to content

Commit

Permalink
fix: adjust space between quiz questions (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
huyenltnguyen authored Oct 29, 2024
1 parent dc1d250 commit 8b23afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quiz/quiz.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const Quiz = <AnswerT extends number | string>({
required,
}: QuizProps<AnswerT>) => {
return (
<ul className="flex flex-col gap-y-[24px]">
<ul className="flex flex-col gap-y-[48px]">
{questions.map((question, index) => (
<li key={index}>
<QuizQuestion
Expand Down

0 comments on commit 8b23afe

Please sign in to comment.