Compare commits

...

3 Commits

Author SHA1 Message Date
RaymondVerhoef
1afa773a34 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>
2026-07-15 14:53:51 +02:00
RaymondVerhoef
32290a3172 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>
2026-07-15 14:43:01 +02:00
39e448e807 Merge pull request 'feat/r42-accuracy-and-clear-history' (#34) from feat/r42-accuracy-and-clear-history into main
All checks were successful
On Push to Main / test (push) Successful in 34s
On Push to Main / publish (push) Successful in 1m10s
On Push to Main / deploy-dev (push) Successful in 3m10s
Reviewed-on: #34
2026-07-13 12:42:12 +00:00
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>
<h2 className="text-xl font-bold leading-snug">{q.question}</h2> <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>
<h2 className="text-xl font-bold leading-snug">{q.question}</h2> <h5 className="text-sm font-bold leading-snug">{q.question}</h5>
</Card> </Card>
<div className="space-y-3"> <div className="space-y-3">