Skip to content

Commit

Permalink
Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
derekmbrown committed Feb 4, 2025
1 parent 7110938 commit 78d4a1f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/layouts/Note.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
import Main from './Main.astro'
import moment from 'moment'
import { Icon } from 'astro-icon/components'
const { frontmatter } = Astro.props
const { title, pubDate, tags, dek, url } = frontmatter
Expand Down Expand Up @@ -45,8 +46,8 @@ tags.sort()
</div>
<span class="text-5xl mb-4 font-bold">{title}</span>
<div class="flex flex-wrap">
<span class="text-[#7E8C9A] text-lg">
Published: {publishedDate}
<span class="text-[#7E8C9A] text-lg flex items-center gap-2">
<Icon name="mdi:calendar-month" width="30" height="30"/> {publishedDate}
</span>
</div>
</div>
Expand Down

0 comments on commit 78d4a1f

Please sign in to comment.