Compare commits

...

2 commits

Author SHA1 Message Date
9a9447961f Merge pull request 'style(navbar): update text from 'Balance' to 'Guthaben'' (#91) from translation into main
All checks were successful
Release / Release (push) Successful in 59s
Reviewed-on: #91
2025-03-26 12:27:38 +00:00
cd84d0c949
style(navbar): update text from 'Balance' to 'Guthaben'
All checks were successful
CI / Get Changed Files (pull_request) Successful in 5s
CI / Checkstyle Main (pull_request) Has been skipped
CI / eslint (pull_request) Successful in 37s
CI / prettier (pull_request) Successful in 41s
CI / test-build (pull_request) Successful in 41s
2025-03-26 13:21:29 +01:00

View file

@ -18,7 +18,7 @@
<div
class="text-white font-bold bg-deep-blue-contrast rounded-full px-4 py-2 text-sm hover:bg-deep-blue-contrast/80 hover:cursor-pointer hover:scale-105 transition-all active:scale-95 select-none duration-300"
>
<span>Balance: {{ balance() | currency: 'EUR' : 'symbol' : '1.2-2' }}</span>
<span>Guthaben: {{ balance() | currency: 'EUR' : 'symbol' : '1.2-2' }}</span>
</div>
<button (click)="logout()" class="button-primary px-4 py-1.5">Abmelden</button>
}