@@ -344,7 +344,7 @@ function SortableProjectItem({
344344 transform : CSS . Translate . toString ( transform ) ,
345345 transition,
346346 } }
347- className = { `group/menu-item relative rounded-md ${
347+ className = { `group/menu-item relative rounded-md mt-1.5 first:mt-0 ${
348348 isDragging ? "z-20 opacity-80" : ""
349349 } ${ isOver && ! isDragging ? "ring-1 ring-primary/40" : "" } `}
350350 data-sidebar = "menu-item"
@@ -1290,7 +1290,7 @@ export default function Sidebar() {
12901290 < SidebarMenuButton
12911291 ref = { isManualProjectSorting ? dragHandleProps ?. setActivatorNodeRef : undefined }
12921292 size = "sm"
1293- className = { `gap-2 px-2 py-1.5 text-left hover:bg-accent group-hover/project-header:bg-accent group-hover/project-header:text-sidebar-accent-foreground ${
1293+ className = { `gap-2 px-2 py-2 text-left hover:bg-accent group-hover/project-header:bg-accent group-hover/project-header:text-sidebar-accent-foreground ${
12941294 isManualProjectSorting ? "cursor-grab active:cursor-grabbing" : "cursor-pointer"
12951295 } `}
12961296 { ...( isManualProjectSorting && dragHandleProps ? dragHandleProps . attributes : { } ) }
@@ -1329,7 +1329,7 @@ export default function Sidebar() {
13291329 />
13301330 ) }
13311331 < ProjectFavicon cwd = { project . cwd } />
1332- < span className = "flex-1 truncate text-xs font-medium text-foreground/90 " >
1332+ < span className = "flex-1 truncate text-xs font-semibold tracking-[0.01em] text-foreground" >
13331333 { project . name }
13341334 </ span >
13351335 </ SidebarMenuButton >
@@ -1865,7 +1865,7 @@ export default function Sidebar() {
18651865 ) : (
18661866 < SidebarMenu ref = { attachProjectListAutoAnimateRef } >
18671867 { sortedProjects . map ( ( project ) => (
1868- < SidebarMenuItem key = { project . id } className = "rounded-md" >
1868+ < SidebarMenuItem key = { project . id } className = "rounded-md mt-1.5 first:mt-0 " >
18691869 { renderProjectItem ( project , null ) }
18701870 </ SidebarMenuItem >
18711871 ) ) }
0 commit comments