27 lines
873 B
Plaintext
27 lines
873 B
Plaintext
@inherits LayoutComponentBase
|
|
@using DeepDrftShared.Client.Common
|
|
|
|
<MudThemeProvider IsDarkMode="false" Theme="@DeepDrftPalettes.Cms" />
|
|
<MudPopoverProvider />
|
|
|
|
<MudLayout>
|
|
<MudAppBar Dense="true" Elevation="1" Color="Color.Primary">
|
|
<MudText Typo="Typo.h6" Class="ml-3" Style="font-family: 'DM Sans', sans-serif; letter-spacing: 0.05em;">
|
|
Deep Drft — Admin
|
|
</MudText>
|
|
</MudAppBar>
|
|
<MudMainContent>
|
|
<MudContainer MaxWidth="MaxWidth.Small"
|
|
Class="d-flex flex-column justify-center align-center"
|
|
Style="min-height: calc(100vh - 48px);">
|
|
@Body
|
|
</MudContainer>
|
|
</MudMainContent>
|
|
</MudLayout>
|
|
|
|
<div id="blazor-error-ui" data-nosnippet>
|
|
An unhandled error has occurred.
|
|
<a href="." class="reload">Reload</a>
|
|
<span class="dismiss">🗙</span>
|
|
</div>
|