fixed top bar height issues and other styling

This commit is contained in:
2026-05-15 14:32:22 +02:00
parent 2f99126c17
commit 59108835dd
6 changed files with 99 additions and 29 deletions
@@ -22,12 +22,10 @@ export default function LogoutButton() {
disabled={busy}
title="Sign out"
aria-label="Sign out"
className="text-subtext0 hover:text-red transition-colors p-1.5 rounded-md hover:bg-surface0/60 disabled:opacity-50"
className="topbar-control topbar-control--danger"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
@@ -40,6 +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>
</button>
);
}