This commit is contained in:
gpt-engineer-app[bot] 2026-01-21 16:03:12 +00:00
parent 8894b03926
commit cb5a243cf3

View file

@ -409,10 +409,10 @@ const LadybugClockPuzzle: React.FC<LadybugClockPuzzleProps> = ({
<p className="text-sm text-muted-foreground mb-3">
Which number do you think is most likely to be painted last?
</p>
<div className="flex flex-wrap gap-2">
<div className="flex flex-wrap gap-1.5">
{Array.from({
length: numPositions - 1
}, (_, i) => i + 1).map(pos => <Button key={pos} onClick={() => setUserPrediction(pos)} variant={userPrediction === pos ? "default" : "outline"} size="sm" className="w-10 h-10">
}, (_, i) => i + 1).map(pos => <Button key={pos} onClick={() => setUserPrediction(pos)} variant={userPrediction === pos ? "default" : "outline"} size="sm" className="w-8 h-8 text-xs p-0">
{positionToNumber(pos)}
</Button>)}
</div>