decePubClient/Shared/MainLayout.razor

11 lines
283 B
Plaintext
Raw Normal View History

2022-02-02 20:26:14 +01:00
@inherits LayoutComponentBase
2022-02-14 01:51:52 +01:00
<div class="relative flex flex-col md:flex-row w-full h-full">
<NavMenu />
2022-02-02 20:26:14 +01:00
2022-02-14 01:51:52 +01:00
<div class="block flex-1 relative w-full h-full">
<div class="block absolute overflow-y-auto w-full h-full p-3 md:py-4 md:pl-2 md:pr-4">
@Body
</div>
</div>
</div>