This commit is contained in:
2026-05-15 15:57:00 +02:00
parent 7294dd47ef
commit ab6f6088f2
8 changed files with 143 additions and 69 deletions
@@ -22,7 +22,7 @@ export default function LogoutButton() {
disabled={busy}
title="Sign out"
aria-label="Sign out"
className="topbar-control topbar-control--danger"
className="topbar-control topbar-control--danger tc-collapse-sm"
>
<svg
xmlns="http://www.w3.org/2000/svg"
@@ -38,7 +38,7 @@ export default function LogoutButton() {
<polyline points="16 17 21 12 16 7" />
<line x1="21" x2="9" y1="12" y2="12" />
</svg>
<span>{busy ? 'Signing out…' : 'Sign out'}</span>
<span className="tc-label">{busy ? 'Signing out…' : 'Sign out'}</span>
</button>
);
}