Skip to content

Commit f1ed9cd

Browse files
committed
Solved 5.5
Insufficient Whitespace in Card Layout The current design exhibits a lack of whitespace between the cards, both horizontally and vertically. Recommendation incorporate sufficient whitespace between the cards.5.4;Improve card visibility by adding necessary effects and strokes when the user hovers over it.; p-6 → p-6 md:p-8 for better padding on larger screens.
1 parent 408a649 commit f1ed9cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/blog/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default function BlogIndexPage() {
137137
)}
138138

139139
{posts.length > 0 && isClient && (
140-
<ul className="grid gap-6 mx-auto mt-10 max-w-6xl sm:grid-cols-2 lg:grid-cols-3">
140+
<ul className="grid gap-8 mx-auto mt-10 max-w-6xl sm:grid-cols-2 lg:grid-cols-3">
141141
{posts.slice(0, visiblePosts).map((post, index) => (
142142
<BlogPostItem key={index} post={post} />
143143
))}

0 commit comments

Comments
 (0)