What is the correct CSS to add a footer in the default Blazor layout? - I have tried some approach without success. I appreciate your help.
@inherits LayoutComponentBase
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<div class="main">
<div class="top-row px-4">
Anything
</div>
<div class="content px-4">
@Body
</div>
<!-- ** How to make it stay fixed in the bottom? -->
<footer>
Anything, @(DateTime.Today.Year)
</footer>
</div>
</div>