Skip to content

Commit 8ec7895

Browse files
committed
🤖 fix: align TitleBar background with WorkspaceHeader
Changed TitleBar from bg-dark to bg-separator to match WorkspaceHeader and create visual continuity across the top of the app.
1 parent 3556809 commit 8ec7895

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/browser/components/TitleBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export function TitleBar() {
220220
const showUpdateIndicator = true;
221221

222222
return (
223-
<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">
223+
<div className="bg-separator border-border-light font-primary text-muted flex h-8 shrink-0 items-center justify-between border-b px-4 text-[11px] select-none">
224224
<div className="mr-4 flex min-w-0 items-center gap-2">
225225
{showUpdateIndicator && (
226226
<TooltipWrapper>

src/browser/components/WorkspaceHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const WorkspaceHeader: React.FC<WorkspaceHeaderProps> = ({
2828
}, [workspaceId]);
2929

3030
return (
31-
<div className="bg-separator border-border-light flex items-center justify-between border-b px-[15px] py-1 [@media(max-width:768px)]:flex-wrap [@media(max-width:768px)]:gap-2 [@media(max-width:768px)]:py-2 [@media(max-width:768px)]:pl-[60px]">
31+
<div className="bg-separator border-border-light flex h-8 items-center justify-between border-b px-[15px] [@media(max-width:768px)]:h-auto [@media(max-width:768px)]:flex-wrap [@media(max-width:768px)]:gap-2 [@media(max-width:768px)]:py-2 [@media(max-width:768px)]:pl-[60px]">
3232
<div className="text-foreground flex min-w-0 items-center gap-2 overflow-hidden font-semibold">
3333
<WorkspaceStatusDot workspaceId={workspaceId} />
3434
<GitStatusIndicator

0 commit comments

Comments
 (0)