summary refs log tree commit diff
path: root/app/posts/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts/page.tsx')
-rw-r--r--app/posts/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/page.tsx b/app/posts/page.tsx
index e713259..a53772f 100644
--- a/app/posts/page.tsx
+++ b/app/posts/page.tsx
@@ -14,7 +14,7 @@ export default async function Posts() {
       </h1>
       <main>
         {sortedPosts.map((post: Post) => (
-          <div className="mainColumn">
+          <div className="mainColumn card">
             <InfoBar authorName={post.author} publishedDate={post.date} />
             <h2>{post.title}</h2>
             <p>{post.subtitle}</p>