Skip to content

Commit

Permalink
Fix layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
SakuraIsayeki committed Apr 29, 2023
1 parent 1d8f662 commit bc9fb18
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/YumeChan.NetRunner/Shared/CoverLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


<header>
<Navbar CurrentUri=@CurrentUri />
<Navbar CurrentUri="@CurrentUri" />
</header>

<div class="container-fluid" style="margin: 100px 0px 0px inherit; padding: 0px;">
Expand Down
4 changes: 3 additions & 1 deletion src/YumeChan.NetRunner/Shared/Docs/DocsLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="container-fluid" style="margin-top: 4rem !important">
<div class="page">
<header>
<Navbar CurrentUri=@CurrentUri />
<Navbar CurrentUri="@CurrentUri" />
</header>

<main role="main">
Expand All @@ -12,6 +12,8 @@
</div>
</div>

<Footer />

@code {

}
2 changes: 1 addition & 1 deletion src/YumeChan.NetRunner/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@inherits CommonSiteLayout

<header>
<Navbar CurrentUri=@CurrentUri />
<Navbar CurrentUri="@CurrentUri" />
</header>

<div id="main-container" class="container" style="margin-top: 100px !important">
Expand Down

0 comments on commit bc9fb18

Please sign in to comment.