Skip to content

Commit

Permalink
fix: hotfix blog categories mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
ovflowd committed Feb 19, 2024
1 parent 6daed7d commit 281609a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/withBlogCategories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const WithBlogCategories: FC<WithBlogCategoriesProps> = ({
tabs={categories}
activeTab={blogData.category}
>
<div className="grid grid-cols-[repeat(auto-fill,minmax(theme(spacing.96),1fr))] [grid-gap:theme(spacing.12)_theme(spacing.8)]">
<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]">
{blogData.posts.map(post => (
<BlogPostCard
key={post.slug}
Expand Down

0 comments on commit 281609a

Please sign in to comment.