Skip to content
Open
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
8 changes: 4 additions & 4 deletions src/components/layout/main-sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export const MainSidebar = memo(() => {
{memoizedShowFileTreeHeader && (
<div className="flex flex-wrap items-center justify-between bg-secondary-bg px-2 py-1.5">
<h3
className="min-w-0 flex-shrink cursor-pointer truncate rounded px-2 py-1 font-medium font-mono text-text text-xs tracking-wide hover:bg-hover"
className="min-w-0 flex-shrink cursor-pointer truncate rounded px-2 py-1 font-medium font-mono text-sm text-text tracking-wide hover:bg-hover"
onClick={onProjectNameMenuOpen}
onContextMenu={onProjectNameMenuOpen}
title="Click for workspace options"
Expand All @@ -194,7 +194,7 @@ export const MainSidebar = memo(() => {
)}
title="Open Folder"
>
<FolderOpen size={12} />
<FolderOpen size={13} />
</Button>
<Button
onClick={handleCreateNewFile}
Expand All @@ -206,7 +206,7 @@ export const MainSidebar = memo(() => {
)}
title="New File"
>
<FilePlus size={12} />
<FilePlus size={13} />
</Button>
<Button
onClick={handleCreateNewFolder}
Expand All @@ -218,7 +218,7 @@ export const MainSidebar = memo(() => {
)}
title="New Folder"
>
<FolderPlus size={12} />
<FolderPlus size={13} />
</Button>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/window/custom-title-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ const CustomTitleBar = ({
</div>

{/* Right side */}
<div className="z-20 flex items-center gap-0.5">
<div className="z-20 flex items-center gap-1">
{/* AI Chat button */}
<button
onClick={() => {
Expand All @@ -266,7 +266,7 @@ const CustomTitleBar = ({
style={{ minHeight: 0, minWidth: 0 }}
title="Toggle AI Chat"
>
<Sparkles size={12} />
<Sparkles size={13} />
</button>
{/* Settings button */}
<button
Expand All @@ -278,7 +278,7 @@ const CustomTitleBar = ({
style={{ minHeight: 0, minWidth: 0 }}
title="Settings"
>
<Settings size={12} />
<Settings size={13} />
</button>

{/* Window controls - only show on Linux */}
Expand Down