+1
-1
components/withBlogCategories.tsx
+1
-1
components/withBlogCategories.tsx
···
30
30
tabs={categories}
31
31
activeTab={blogData.category}
32
32
>
33
-
<div className="grid grid-cols-[repeat(auto-fill,minmax(theme(spacing.96),1fr))] [grid-gap:theme(spacing.12)_theme(spacing.8)]">
33
+
<div className="grid grid-cols-[repeat(auto-fill,minmax(theme(spacing.80),1fr))] [grid-gap:theme(spacing.12)_theme(spacing.8)] xs:grid-cols-[1fr]">
34
34
{blogData.posts.map(post => (
35
35
<BlogPostCard
36
36
key={post.slug}