Skip to content

Commit

Permalink
improve styling
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticroentgen committed Sep 25, 2024
1 parent 9f12de0 commit 842abd5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions Sherlog.Server/Pages/Logbook.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<p>This page shows sent log events:</p>

<table class="table">
<table class="table table-striped">
<thead>
<tr>
<th>Date/Time</th>
Expand All @@ -26,8 +26,16 @@
<td>@le.Tenant</td>
<td>@le.Project</td>
<td>@le.LogType</td>
<td>@le.RecipientGroups</td>
<td>@le.Message</td>
<td>
<ul>
@foreach (string r in le.RecipientGroups.Split(','))
{
<li>@r</li>
}
</ul>

</td>
<td style="white-space: pre-line;">@le.Message</td>
</tr>
}
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion Sherlog.Server/Pages/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</div>
</nav>
</header>
<div class="container">
<div class="container-fluid">
<main role="main" class="pb-3">
@RenderBody()
</main>
Expand Down

0 comments on commit 842abd5

Please sign in to comment.