Changes
This commit is contained in:
parent
8894b03926
commit
cb5a243cf3
1 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue