This commit is contained in:
Programmist73 2023-05-20 06:27:04 +04:00
commit fe528fdd04
7 changed files with 22 additions and 4 deletions

View File

@ -15,7 +15,7 @@
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\css\site.css">
<Content Update="wwwroot\css\site1.css">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>

View File

@ -34,8 +34,9 @@
<hr class="mt-5 mb-3" />
@if (Model != null)
{
<h3>Отчет отправлен на почту @APICashier.Cashier.Email</h3>
<div class="row p-3 text-center">
<h3>Отчет отправлен на почту @APICashier.Cashier.Email</h3>
<hr class="mt-5 mb-3" />
<h4>Отчёт по выдаче наличных со счёта</h4>
<table class="table">
<thead>

View File

@ -60,6 +60,7 @@
bottom: 0;
width: 100%;
height: 80px;
background-color: #212529
}
.form-signin {
@ -102,6 +103,10 @@
border-width: 4px;
border-color: #212529;
}
table {
vertical-align: middle;
}
</style>
</head>
<body class="MyBody">

View File

@ -16,4 +16,10 @@
<ProjectReference Include="..\BankYouBankruptContracts\BankYouBankruptContracts.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\css\site.css">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>

View File

@ -30,8 +30,9 @@
<hr class="mt-5 mb-3" />
@if (Model != null)
{
<h3>Отчет отправлен на почту @APIClient.Client.Email</h3>
<div class="row text-center">
<h3>Отчет отправлен на почту @APIClient.Client.Email</h3>
<hr class="mt-5 mb-3" />
<p>Отчёт по пополнениям</p>
<table class="table">
<thead>

View File

@ -54,6 +54,7 @@ body {
bottom: 0;
width: 100%;
height: 80px;
background-color: #212529;
}
.form-signin {
@ -96,3 +97,7 @@ table.table thead {
border-width: 4px;
border-color: #ffc107
}
table {
vertical-align: middle;
}