Skip to content

Commit 0fe4d96

Browse files
committed
remember margins in frontpage-land
1 parent 392866c commit 0fe4d96

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/web/Jordnaer/Components/Footer.razor

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<footer class="footer mud-elevation-5 d-flex flex-row justify-center">
1+
<footer class="footer mud-elevation-5 d-flex flex-row justify-center @Class">
22
<div class="d-flex py-3">
33
<div class="px-sm-10 px-md-12 px-lg-14">
44
<MudNavLink Href="/about">Om</MudNavLink>
@@ -12,3 +12,10 @@
1212
</div>
1313
</div>
1414
</footer>
15+
16+
@code {
17+
18+
[Parameter]
19+
public string? Class { get; set; }
20+
21+
}

src/web/Jordnaer/Pages/Shared/FrontPageLayout.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<TopBar />
1414
@Body
1515
<MudSpacer />
16-
<Footer></Footer>
16+
<Footer class="mt-15"></Footer>
1717
</MudLayout>
1818

1919
<BlazorErrorFooter />

0 commit comments

Comments
 (0)