Skip to content

Commit

Permalink
Fix spacing on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
linkdotnet committed Jun 19, 2024
1 parent 22ff077 commit d65fd3b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ else
<header class="text-center">
<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>
<div class="me-2"><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())
{
<span class="ms-2 blogpost-tag d-inline-flex align-items-center gap-2">
<span class="blogpost-tag d-inline-flex align-items-center gap-2">
@foreach (var tag in BlogPost.Tags)
{
<a class="goto-tag badge bg-primary rounded-pill text-decoration-none" href="/searchByTag/@(Uri.EscapeDataString(tag))">@tag</a>
Expand Down

0 comments on commit d65fd3b

Please sign in to comment.