Updated daily report to show correct information when two work weeks split quarters.
Also current changes to project with Blazor implementation is implemented here as well.
This commit is contained in:
28
ReportingServices.Blazor/Shared/MainLayout.razor
Normal file
28
ReportingServices.Blazor/Shared/MainLayout.razor
Normal file
@ -0,0 +1,28 @@
|
||||
@inherits LayoutComponentBase
|
||||
|
||||
<MudThemeProvider />
|
||||
<MudDialogProvider
|
||||
FullWidth="true"
|
||||
MaxWidth="MaxWidth.ExtraSmall"
|
||||
CloseButton="true"
|
||||
Position="MudBlazor.DialogPosition.Center"
|
||||
CloseOnEscapeKey="true"
|
||||
/>
|
||||
|
||||
<div class="page">
|
||||
<div class="sidebar">
|
||||
<NavMenu />
|
||||
</div>
|
||||
|
||||
<main>
|
||||
<div class="top-row px-4">
|
||||
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
|
||||
</div>
|
||||
|
||||
<article class="content px-4">
|
||||
<div class="container">
|
||||
@Body
|
||||
</div>
|
||||
</article>
|
||||
</main>
|
||||
</div>
|
Reference in New Issue
Block a user