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>
<ItemGroup> <ItemGroup>
<Content Update="wwwroot\css\site.css"> <Content Update="wwwroot\css\site1.css">
<CopyToOutputDirectory>Always</CopyToOutputDirectory> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content> </Content>
</ItemGroup> </ItemGroup>

View File

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

View File

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

View File

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

View File

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

View File

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