Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/browser/components/ThemeToggleButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export function ThemeToggleButton() {
<button
type="button"
onClick={toggleTheme}
className="border-border-light text-muted-foreground hover:border-border-medium/80 hover:bg-toggle-bg/70 focus-visible:ring-border-medium flex h-7 w-7 items-center justify-center rounded-md border bg-transparent transition-colors duration-150 focus-visible:ring-1"
className="border-border-light text-muted-foreground hover:border-border-medium/80 hover:bg-toggle-bg/70 focus-visible:ring-border-medium flex h-5 w-5 items-center justify-center rounded-md border bg-transparent transition-colors duration-150 focus-visible:ring-1"
aria-label={label}
data-testid="theme-toggle"
>
<Icon className="h-4 w-4" aria-hidden />
<Icon className="h-3.5 w-3.5" aria-hidden />
</button>
<Tooltip align="right">{label}</Tooltip>
</TooltipWrapper>
Expand Down
2 changes: 1 addition & 1 deletion src/browser/components/TitleBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export function TitleBar() {
const showUpdateIndicator = true;

return (
<div className="bg-dark border-border-light font-primary text-muted flex shrink-0 items-center justify-between border-b px-4 py-2 text-[11px] select-none">
<div className="bg-dark border-border-light font-primary text-muted flex shrink-0 items-center justify-between border-b px-4 py-1 text-[11px] select-none">
<div className="mr-4 flex min-w-0 items-center gap-2">
{showUpdateIndicator && (
<TooltipWrapper>
Expand Down