Refactor account card title and layout styles for improved UI consistency

This commit is contained in:
2026-03-31 17:38:55 +02:00
parent eb53af2cd9
commit a6d056fe99
4 changed files with 17 additions and 12 deletions

View File

@@ -2,7 +2,7 @@
<div class="card account-card h-100" @onclick="Navigate">
<div class="card-body d-flex flex-column justify-content-between">
<h5 class="card-title mb-3">@Account.Name</h5>
<h3 class="card-title mb-3 mt-0">@Account.Name</h3>
<div class="@(Account.TotalBalance >= 0 ? "amount-positive" : "amount-negative") fs-4">
@($"{Account.TotalBalance:N2} €")
</div>

View File

@@ -5,7 +5,6 @@
<a class="navbar-brand" href="">
<strong>Dümpelkas</strong> <small class="text-muted">Kassenbuch</small>
</a>
<span class="version-label">v@(AppVersion)</span>
</nav>
<main class="flex-grow-1 overflow-auto p-3">