We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392866c commit 0fe4d96Copy full SHA for 0fe4d96
src/web/Jordnaer/Components/Footer.razor
@@ -1,4 +1,4 @@
1
-<footer class="footer mud-elevation-5 d-flex flex-row justify-center">
+<footer class="footer mud-elevation-5 d-flex flex-row justify-center @Class">
2
<div class="d-flex py-3">
3
<div class="px-sm-10 px-md-12 px-lg-14">
4
<MudNavLink Href="/about">Om</MudNavLink>
@@ -12,3 +12,10 @@
12
</div>
13
14
</footer>
15
+
16
+@code {
17
18
+ [Parameter]
19
+ public string? Class { get; set; }
20
21
+}
src/web/Jordnaer/Pages/Shared/FrontPageLayout.razor
@@ -13,7 +13,7 @@
<TopBar />
@Body
<MudSpacer />
- <Footer></Footer>
+ <Footer class="mt-15"></Footer>
</MudLayout>
<BlazorErrorFooter />
0 commit comments