Skip to content

Commit

Permalink
reorder grid classes
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewStanciu committed Sep 21, 2023
1 parent abdb2ac commit 615ee7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/sponsor/grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ export function Grid({
<div
className={clsx(
className,
`grid grid-cols-2 ${largeGap ? 'gap-4' : 'gap-2'} items-center ${
overflow ? 'sponsor-overflow' : ''
} break-inside-avoid`
`grid grid-cols-2 items-center break-inside-avoid ${
largeGap ? 'gap-4' : 'gap-2'
} ${overflow ? 'sponsor-overflow' : ''}`
)}
>
{children}
Expand Down

0 comments on commit 615ee7b

Please sign in to comment.