Skip to content

Commit

Permalink
Merge pull request #27 from leungkimming/michael3
Browse files Browse the repository at this point in the history
Michael3
  • Loading branch information
leungkimming authored Apr 28, 2022
2 parents 9679826 + 20e19ea commit ad5c67e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 18 deletions.
30 changes: 13 additions & 17 deletions Client/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,22 @@
<div class="menu-button">
<TelerikButton Icon="menu" OnClick="@ToggleMenuDrawer" />
</div>
<table width="100%" table-layout="fixed">
<tr>
<td class="title" width="62%">
<h1>.NET 6 Framework</h1>
</td>
<td class="information" width="8%">
@if (@_RuntimeInfo?.Environment != "Production") {
<div class="title">
<h1>.NET 6 Framework</h1>
</div>
<div class="information div-container" >
@if (@_RuntimeInfo?.Environment != "Production") {
<label>@_RuntimeInfo?.Environment</label>
}
</td>
<td class="information" width="10%">
<label>(@_RuntimeInfo?.Build)</label>
</td>
<td class="information" width="20%">
<label>@_RuntimeInfo?.User</label>
</td>
</tr>
</table>
</div>
<div class="information div-container">
<label>(@_RuntimeInfo?.Build)</label>
</div>
<div class="information div-container" >
<label>@_RuntimeInfo?.User</label>
</div>
<div class="settings">
<TelerikButton Icon="gear" />
<TelerikButton Icon="gear" OnClick="@GoToRuntimeInfo" />
</div>
</div>
</div>
Expand Down
1 change: 0 additions & 1 deletion Client/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ a, .btn-link {
}

.header .information {
flex: 0 0 24px;
text-align: center
}

Expand Down

0 comments on commit ad5c67e

Please sign in to comment.