style(login): banner uses the text-warning semantic token

Replace text-amber-900/text-amber-800 with the existing --color-warning
utility from layout.css. The amber soft fill stays (matching the precedent
of the green "registered" banner; a full surface-token pair is out of scope
for this PR). Addresses PR #612 / Leonie L1.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-17 22:51:13 +02:00
parent 1f4e8a5958
commit 4f1594390e

View File

@@ -47,8 +47,8 @@ let {
aria-live="polite"
class="mb-5 rounded-sm border border-amber-200 bg-amber-50 px-4 py-3 font-sans"
>
<p class="text-xs font-medium text-amber-900">{m.error_session_expired()}</p>
<p class="mt-1 text-xs text-amber-800">{m.error_session_expired_explainer()}</p>
<p class="text-xs font-medium text-warning">{m.error_session_expired()}</p>
<p class="mt-1 text-xs text-warning">{m.error_session_expired_explainer()}</p>
</div>
{/if}