Refactor terminology in dialogs and tables for consistency; update styles for number inputs and footer links
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
<div class="dialog-backdrop" @onclick="Cancel">
|
||||
<div class="dialog-content" @onclick:stopPropagation="true">
|
||||
<h5>@(EditEntry != null ? "Eintrag bearbeiten" : "Neuer Eintrag")</h5>
|
||||
<h5>@(EditEntry != null ? "Buchung bearbeiten" : "Neue Buchung")</h5>
|
||||
|
||||
<div class="form-container">
|
||||
@if (EditEntry == null)
|
||||
@@ -21,7 +21,7 @@
|
||||
<input type="text" class="form-control" @bind="title" placeholder="Beschreibung" />
|
||||
|
||||
<label class="form-label">Betrag (€)</label>
|
||||
<input type="number" class="form-control" @bind="amount" step="0.01" min="0.01" />
|
||||
<input type="number" class="form-control no-spinner" @bind="amount" step="0.01" min="0.01" />
|
||||
</div>
|
||||
|
||||
<div class="d-flex justify-content-end gap-2">
|
||||
|
||||
Reference in New Issue
Block a user