Skip to content

Commit 48727b3

Browse files
committed
refactor(website): update home page layout for improved responsiveness
1 parent 25616cd commit 48727b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/widgets/tweet-cards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { chunk } from "#/lib/chunk";
66
export function TweetCards({ tweets }: { tweets: string[] }) {
77
const chunkedTweets = useMemo(() => chunk(tweets, 2), [tweets]);
88
return (
9-
<div className="grid grid-cols-1 md:grid-cols-2 sm:gap-x-8 sm:mt-8">
9+
<div className="grid grid-cols-1 md:grid-cols-2 md:gap-x-12 mt-8 max-w-3xl">
1010
{chunkedTweets.map((chunk) => (
1111
<div key={chunk.join("_")} className="grid justify-center">
1212
{chunk.map((id) => (

0 commit comments

Comments
 (0)