Skip to content

Commit

Permalink
Merge pull request #592 from Utsavladia/tablet-card
Browse files Browse the repository at this point in the history
Fixed posts card for tablet size 768px
  • Loading branch information
akbatra567 authored Aug 10, 2024
2 parents 7c518a5 + 530f25e commit 98f4f4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/Posts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const Posts = () => {
{filteredPosts.length === 0 ? (
<div className="text-center text-black dark:text-white">No Posts</div>
) : (
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4 w-full">
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-3 gap-4 w-full">
{filteredPosts.map((post) => (
<PostCard
key={post.id}
Expand Down

0 comments on commit 98f4f4f

Please sign in to comment.