Skip to content

Commit

Permalink
make headings bolder
Browse files Browse the repository at this point in the history
  • Loading branch information
nexxeln committed Jun 16, 2024
1 parent 2e00f36 commit 93b73a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/PostRow.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { post: { data: { title, date }, slug } } = Astro.props

<article class="flex justify-between">
<Link href={`/blog/${slug}`}>
<span>{title}</span>
<span class="font-medium text-neutral-100">{title}</span>
</Link>

<span>{formatDate(date)}</span>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Project.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const { project: { repo: name, description, link } } = Astro.props

<div class="w-20.6666666666666666666666666666666666666666666666667ch flex flex-col">
<Link href={link}>
<span class="font-medium">{name}</span>
<span class="font-medium text-neutral-100">{name}</span>
</Link>

<span class="pt-3">{description}</span>
Expand Down

0 comments on commit 93b73a3

Please sign in to comment.