summary refs log tree commit diff
path: root/app/posts
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts')
-rw-r--r--app/posts/[slug]/page.tsx2
-rw-r--r--app/posts/page.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/posts/[slug]/page.tsx b/app/posts/[slug]/page.tsx
index 2110a35..03df660 100644
--- a/app/posts/[slug]/page.tsx
+++ b/app/posts/[slug]/page.tsx
@@ -18,7 +18,7 @@ export default async function Post({ params: { slug } }) {
       <h1 className="pageTitle">
         {post.title}
       </h1>
-      <main className="mainColumn">
+      <main className="mainColumn card">
         <InfoBar authorName={post.author} publishedDate={post.date} />
         <Markdown>{post.body}</Markdown>
       </main>
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>