exciting-aftermath/Portfolio.WebUI.Server/Components/Layout/MainLayout.razor

13 lines
281 B
Plaintext

@inherits LayoutComponentBase
<div class="page bg-primary-subtle ">
<Sidebar/>
<main class="border border-3 border-dark w-100">
<article class="container border border-3 border-black px-4 w-100 m-auto">
@Body
</article>
</main>
</div>