fix: shrink test question heading further to h5
All checks were successful
On Push to Main / test (push) Successful in 42s
On Push to Main / publish (push) Successful in 1m10s
On Push to Main / deploy-dev (push) Successful in 3m10s

Previous h3/text-base was still too large; dropped to h5/text-sm.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
RaymondVerhoef
2026-07-15 14:53:51 +02:00
parent 32290a3172
commit 1afa773a34
2 changed files with 2 additions and 2 deletions

View File

@@ -375,7 +375,7 @@ const Testen = () => {
<div className="flex items-center gap-2 mb-4"> <div className="flex items-center gap-2 mb-4">
<Tag variant="accent" className="text-xs">{q.topicLabel}</Tag> <Tag variant="accent" className="text-xs">{q.topicLabel}</Tag>
</div> </div>
<h3 className="text-base font-bold leading-snug">{q.question}</h3> <h5 className="text-sm font-bold leading-snug">{q.question}</h5>
</Card> </Card>
{/* Options */} {/* Options */}

View File

@@ -431,7 +431,7 @@ const TopicTest = () => {
<Tag variant="accent" className="text-xs">{pickedTopic?.label}</Tag> <Tag variant="accent" className="text-xs">{pickedTopic?.label}</Tag>
{!q.isUnseen && <Tag variant="dark" className="text-[10px]">Practice (no points)</Tag>} {!q.isUnseen && <Tag variant="dark" className="text-[10px]">Practice (no points)</Tag>}
</div> </div>
<h3 className="text-base font-bold leading-snug">{q.question}</h3> <h5 className="text-sm font-bold leading-snug">{q.question}</h5>
</Card> </Card>
<div className="space-y-3"> <div className="space-y-3">