Skip to content

Commit

Permalink
fixed colors in postheader.astro
Browse files Browse the repository at this point in the history
  • Loading branch information
jhilker98 committed Oct 1, 2023
1 parent 1fba7a4 commit ae1bb2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/blog/PostHeader.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const postTags = hashtagPostTags(tags);

<header class="align-baseline">
<h1 class="mt-1" style="text-wrap: balance;">{title}</h1>
<Icon name="mdi/calendar" class="w-5 mb-1 mr-1 inline-block" />
<span class="font-bold mr-1">Posted:</span>
<Icon name="mdi/calendar" class="w-5 mb-1 mr-1 inline-block dark:fill-neutral-300 fill-neutral-700" />
<span class="font-bold mr-1 dark:text-neutral-300 text-neutral-700">Posted:</span>
<time class="inline">
{formatPostDate(pubDate)}
</time>
Expand Down

0 comments on commit ae1bb2a

Please sign in to comment.