Skip to content

Commit 1d76587

Browse files
authored
🤖 feat: change '+' button to '+ New Project' in sidebar header (#1691)
Follow-up to #1662 (logo move) - now that "Projects" text is gone, the "+" button needs clearer labeling. ## Changes - Change the `+` button next to the Mux logo to show `+ New Project` - Update styling for the wider button (flex, gap, px padding) --- _Generated with `mux` • Model: `anthropic:claude-opus-4-5` • Thinking: `high` • Cost: `$2.04`_
1 parent 94b243f commit 1d76587

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/browser/components/ProjectSidebar.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,9 +495,10 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
495495
<button
496496
onClick={onAddProject}
497497
aria-label="Add project"
498-
className="text-secondary hover:bg-hover hover:border-border-light flex h-6 w-6 cursor-pointer items-center justify-center rounded border border-transparent bg-transparent text-lg leading-none transition-all duration-200"
498+
className="text-secondary hover:bg-hover hover:border-border-light flex h-6 cursor-pointer items-center gap-1 rounded border border-transparent bg-transparent px-1.5 text-xs transition-all duration-200"
499499
>
500-
+
500+
<span className="text-base leading-none">+</span>
501+
<span>New Project</span>
501502
</button>
502503
</div>
503504
<div className="flex-1 overflow-y-auto">

0 commit comments

Comments
 (0)