aboutsummaryrefslogtreecommitdiff
path: root/src/pages/blog
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-01-31 22:09:35 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-01-31 22:16:29 -0500
commitd07c87a78109399677ada202aad879a9a7c30eca (patch)
tree856a5d8cd3ddd84c2444068fa8c10295004f1b44 /src/pages/blog
parentb21c39aaf41f0fd2376bdf5f832d32a8ebbaa95a (diff)
downloadpersonal-website-d07c87a78109399677ada202aad879a9a7c30eca.tar.gz
personal-website-d07c87a78109399677ada202aad879a9a7c30eca.tar.bz2
personal-website-d07c87a78109399677ada202aad879a9a7c30eca.zip
forgot to give guidelines the card design; blog tweaks
Diffstat (limited to 'src/pages/blog')
-rw-r--r--src/pages/blog/[...slug].astro11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro
index 8713ab5..790a920 100644
--- a/src/pages/blog/[...slug].astro
+++ b/src/pages/blog/[...slug].astro
@@ -19,13 +19,8 @@ const { Content } = await entry.render();
<Page title={entry.data.title} description={entry.data.description} date={formatDate(entry.data.date)}>
<main>
<a href="/blog" class="back-link">← All articles</a>
- <Content />
+ <article>
+ <Content />
+ </article>
</main>
</Page>
-<style>
- main {
- background-color: #3B513B;
- padding: 1.2em;
- border-radius: 20px;
- }
-</style>