Skip to content

Commit

Permalink
feat: drop the grid to 3 columns on smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcath committed Nov 6, 2023
1 parent a75f9d8 commit 81dffcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/start.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ const StartPage = () => {
<Doodle doodle={doodle} currentUser={user!.username} />
</div>
<div className="col-span-2 row-span-2">
<div className="grid grid-cols-4 gap-4">
<div className="grid grid-cols-3 xl:grid-cols-4 gap-4">
{shortcuts.map(({id, title, icon, target}) => {
return (
<a
Expand Down

0 comments on commit 81dffcb

Please sign in to comment.