We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25616cd commit 48727b3Copy full SHA for 48727b3
website/widgets/tweet-cards.tsx
@@ -6,7 +6,7 @@ import { chunk } from "#/lib/chunk";
6
export function TweetCards({ tweets }: { tweets: string[] }) {
7
const chunkedTweets = useMemo(() => chunk(tweets, 2), [tweets]);
8
return (
9
- <div className="grid grid-cols-1 md:grid-cols-2 sm:gap-x-8 sm:mt-8">
+ <div className="grid grid-cols-1 md:grid-cols-2 md:gap-x-12 mt-8 max-w-3xl">
10
{chunkedTweets.map((chunk) => (
11
<div key={chunk.join("_")} className="grid justify-center">
12
{chunk.map((id) => (
0 commit comments