New source control repo for Biskilog POS - secure hub to store & manage source code. Streamlines dev process, tracks changes, & improves collaboration. Ensures reliable software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
1.0 KiB

@using Biskilog_Accounting.Client.Elements
@using Biskilog_Accounting.Shared.Interfaces;
@inherits LayoutComponentBase
@inject NavigationManager m_navigationManager
@layout AuthLayout
@inject HttpClient m_http
@inject ITokenService m_tokenService
<!-- Layout wrapper -->
<div class="layout-wrapper layout-content-navbar">
<div class="layout-container">
<!-- Menu -->
<Sidebar />
<!-- / Menu -->
<!-- Body Layout container -->
<div style="width: 100vh;display: flex;flex: 1 1 auto;flex-direction: column;flex-wrap: nowrap;">
<div class="layout-page">
<Headbar />
<!-- Content wrapper -->
<div class="content-wrapper">
<!-- Content -->
@Body
<!-- / Content -->
<!-- Footer -->
</div>
<!-- Content wrapper -->
</div>
<!-- / Layout page -->
<Footer />
</div>
</div>
</div>
<!-- / Layout wrapper -->