Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
supreme2580 committed May 10, 2024
1 parent 447972d commit b88a054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ function App() {
<div className='flex flex-col items-center justify-center flex-1'>
<div className='w-[90px] h-[90px] border-2 border-[#32363D] rounded-full flex flex-col items-center justify-center hover:cursor-pointer'
onClick={() => handlePotClick(pot.pot - 1)}>
<div className={clsx(pot.seeds > 6 && 'grid-cols-3', 'grid gap-1 grid-cols-2')}>
<div className={clsx(pot.seeds > 6 && 'grid-cols-3', pot.seeds >= 12 && 'grid-cols-4', 'grid gap-1 grid-cols-2')}>
{
Array.from({ length: pot.seeds }, (_, seedIndex) => (
<motion.div
Expand Down

0 comments on commit b88a054

Please sign in to comment.