Skip to content

Commit

Permalink
reduce text size on completed categories
Browse files Browse the repository at this point in the history
  • Loading branch information
JustAman62 committed Aug 31, 2024
1 parent ad496e1 commit 92568e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/grid/InteractiveGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export default function InteractiveGrid({ grid, onCorrect, onIncorrect }: Props)
{matchedCategories.map((category, i) => (
<Row key={i}>
<div className="flex-1 grow rounded-lg content-center bg-green-700 text-white">
<p className="font-bold text-lg">{category.name}</p>
<p className="font-normal text-sm">{category.answers.join(" | ")}</p>
<p className="font-bold text-normal md:text-lg">{category.name}</p>
<p className="font-normal text-xs md:text-sm">{category.answers.join(" | ")}</p>
</div>
</Row>
))}
Expand Down

0 comments on commit 92568e2

Please sign in to comment.