Skip to content

Commit

Permalink
Make all headers bold
Browse files Browse the repository at this point in the history
  • Loading branch information
linkdotnet committed Jun 12, 2024
1 parent 19a2d1d commit 33c168e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/LinkDotNet.Blog.Web/Features/Home/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<section>
<header>
<div class="text-center pt-2">
<h1 class="m-auto align-middle pt-4 pb-3">Recent Posts</h1>
<h1 class="m-auto align-middle pt-4 pb-3 fw-bold">Recent Posts</h1>
</div>
</header>
<div class="content px-4 my-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ else
<div class="blog-container">
<div class="blog-inner-content">
<header class="text-center">
<h1>@BlogPost.Title</h1></header>
<h1 class="fw-bold">@BlogPost.Title</h1></header>
<div class="blogpost-metainformation d-flex flex-row flex-wrap gap-2">
<div><span class="date"></span><span class="ms-1">@BlogPost.UpdatedDate.ToString("dd/MM/yyyy")</span></div>
@if (BlogPost.Tags is not null && BlogPost.Tags.Any())
Expand Down

0 comments on commit 33c168e

Please sign in to comment.