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

Question text used h2/text-xl, making it stand out more than intended; reduced to h3/text-base in both the weekly theme test and on-demand topic test.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
RaymondVerhoef
2026-07-15 14:43:01 +02:00
parent 39e448e807
commit 32290a3172
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">
<Tag variant="accent" className="text-xs">{q.topicLabel}</Tag>
</div>
<h2 className="text-xl font-bold leading-snug">{q.question}</h2>
<h3 className="text-base font-bold leading-snug">{q.question}</h3>
</Card>
{/* Options */}

View File

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