Skip to content

Commit

Permalink
fix: mobile ui issue with columns in save state lists
Browse files Browse the repository at this point in the history
  • Loading branch information
meienberger committed Feb 25, 2024
1 parent 27540bc commit 0064cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/SaveStates/SaveState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const SaveState = ({ gameId, saveStates, onLoad }: Props) => {
}

return (
<div className="grid gap-4 grid-cols-2">
<div className="grid gap-4 grid-cols-1 sm:grid-cols-2">
{saveStates.map((save) => (
<Card key={save}>
<CardHeader>
Expand Down

0 comments on commit 0064cb7

Please sign in to comment.