Skip to content

Commit

Permalink
style: min-height for container
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewiscowles1986 committed Sep 14, 2024
1 parent 3f59c34 commit 047ba31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/klondike-solitaire.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export function KlondikeSolitaireComponent() {
))}
</div>
</div>
<div className="grid grid-cols-7 gap-2 relative">
<div className="grid grid-cols-7 gap-2 relative min-h-80">
{tableau.map((column, columnIndex) => (
<div key={columnIndex} className="space-y-1">
{column.map((card, cardIndex) => (
Expand Down

0 comments on commit 047ba31

Please sign in to comment.