Styling Updates
This commit is contained in:
@@ -6,10 +6,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<div class="top-row px-4">
|
<div class="top-row px-4"></div>
|
||||||
<a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<article class="content px-4">
|
<article class="content px-4">
|
||||||
@Body
|
@Body
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
@@ -5,9 +5,11 @@
|
|||||||
|
|
||||||
<h3>Rechnungen (@((Invoices ?? []).Count))</h3>
|
<h3>Rechnungen (@((Invoices ?? []).Count))</h3>
|
||||||
|
|
||||||
|
<a href="/create" class="btn btn-primary">Neue Rechnung</a>
|
||||||
|
<hr />
|
||||||
|
<div class="row">
|
||||||
@foreach (var invoice in Invoices ?? [])
|
@foreach (var invoice in Invoices ?? [])
|
||||||
{
|
{
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-auto pt-3">
|
<div class="col-md-auto pt-3">
|
||||||
<div class="card" style="width: 18rem;">
|
<div class="card" style="width: 18rem;">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
@@ -26,5 +28,5 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
}
|
}
|
||||||
|
</div>
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<h1>@Invoice.InvoiceId</h1>
|
<h1>Rechnung #@Invoice.InvoiceId</h1>
|
||||||
|
|
||||||
<button type="button" class="btn btn-primary" @onclick="SaveInvoiceAsync">Speichern</button>
|
<button type="button" class="btn btn-primary" @onclick="SaveInvoiceAsync">Speichern</button>
|
||||||
<button type="button" class="btn btn-info" @onclick="GenerateInvoiceAsync">Generieren</button>
|
<button type="button" class="btn btn-info" @onclick="GenerateInvoiceAsync">Generieren</button>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<h3>Einstellungen</h3>
|
<h3>Einstellungen</h3>
|
||||||
|
|
||||||
<button type="button" class="btn btn-primary" @onclick="Save">Save</button>
|
<button type="button" class="btn btn-primary" @onclick="Save">Speichern</button>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user