@@ -137,13 +137,13 @@ const ProjectDragLayer: React.FC = () => {
137137    < div  className = "pointer-events-none fixed inset-0 z-[9999] cursor-grabbing" > 
138138      < div  style = { {  transform : `translate(${ currentOffset . x  +  10 }  px, ${ currentOffset . y  +  10 }  px)`  } } > 
139139        < div  className = "border-l-accent flex w-fit max-w-72 min-w-44 items-center rounded border-l-[3px] bg-gray-900/95 px-3 py-1.5 text-gray-200 shadow-[0_6px_24px_rgba(0,0,0,0.4)]" > 
140-           < span  className = "text-gray-400  mr-1.5 text-xs" > ⠿</ span > 
140+           < span  className = "mr-1.5 text-xs text-gray-400 " > ⠿</ span > 
141141          < span  className = "mr-2 text-[10px] text-gray-500" > ▶</ span > 
142142          < div  className = "min-w-0 flex-1" > 
143143            < div  className = "truncate text-sm font-medium tracking-[0.2px] text-gray-200" > 
144144              { name } 
145145            </ div > 
146-             < div  className = "text-gray-600  font-monospace mt-0.5 truncate text-[11px]" > 
146+             < div  className = "font-monospace mt-0.5 truncate text-[11px] text-gray-600 " > 
147147              { abbrevPath } 
148148            </ div > 
149149          </ div > 
@@ -422,7 +422,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
422422        > 
423423          { ! collapsed  &&  ( 
424424            < > 
425-               < div  className = "border-gray-950  flex items-center justify-between border-b bg-gray-900 p-4" > 
425+               < div  className = "flex items-center justify-between border-b border-gray-950  bg-gray-900 p-4" > 
426426                < h2  className = "m-0 text-[13px] font-semibold tracking-[0.8px] text-gray-200 uppercase" > 
427427                  Projects
428428                </ h2 > 
@@ -445,7 +445,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
445445                    < p  className = "mb-4 text-[13px] text-gray-500" > No projects</ p > 
446446                    < button 
447447                      onClick = { onAddProject } 
448-                       className = "bg-sky-600  hover:bg-sky-600-dark cursor-pointer rounded border-none px-4 py-2 text-[13px] text-white transition-colors duration-200" 
448+                       className = "hover:bg-sky-600-dark cursor-pointer rounded border-none bg-sky-600  px-4 py-2 text-[13px] text-white transition-colors duration-200" 
449449                    > 
450450                      Add Project
451451                    </ button > 
@@ -461,7 +461,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
461461                    const  isExpanded  =  expandedProjects . has ( projectPath ) ; 
462462
463463                    return  ( 
464-                       < div  key = { projectPath }  className = "border-gray-900  border-b " > 
464+                       < div  key = { projectPath }  className = "border-b  border-gray-900 " > 
465465                        < DraggableProjectItem 
466466                          projectPath = { projectPath } 
467467                          onReorder = { handleReorder } 
@@ -482,7 +482,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
482482                          < span 
483483                            data-drag-handle 
484484                            aria-hidden 
485-                             className = "text-gray-400  mr-1.5 cursor-grab text-xs opacity-0 transition-opacity duration-150 select-none" 
485+                             className = "mr-1.5 cursor-grab text-xs text-gray-400  opacity-0 transition-opacity duration-150 select-none" 
486486                          > 
487487                            ⠿
488488                          </ span > 
@@ -499,7 +499,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
499499                              { projectName } 
500500                            </ div > 
501501                            < TooltipWrapper  inline > 
502-                               < div  className = "text-gray-600  font-monospace mt-px truncate text-[11px]" > 
502+                               < div  className = "font-monospace mt-px truncate text-[11px] text-gray-600 " > 
503503                                { abbreviatePath ( projectPath ) } 
504504                              </ div > 
505505                              < Tooltip  className = "tooltip"  align = "left" > 
@@ -515,7 +515,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
515515                              } } 
516516                              aria-label = { `Manage secrets for ${ projectName }  ` } 
517517                              data-project-path = { projectPath } 
518-                               className = "text-gray-600 hover:bg-sky-600/10  mr-1 flex h-5 w-5 shrink-0 cursor-pointer items-center justify-center rounded-[3px] border-none bg-transparent text-sm opacity-0 transition-all duration-200 hover:text-sky-600" 
518+                               className = "mr-1 flex h-5 w-5 shrink-0 cursor-pointer items-center justify-center rounded-[3px] border-none bg-transparent text-sm text-gray-600  opacity-0 transition-all duration-200 hover:bg-sky-600/10  hover:text-sky-600" 
519519                            > 
520520                              🔑
521521                            </ button > 
@@ -532,7 +532,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
532532                              title = "Remove project" 
533533                              aria-label = { `Remove project ${ projectName }  ` } 
534534                              data-project-path = { projectPath } 
535-                               className = "text-gray-600  hover:text-danger-light hover:bg-danger-light/10 flex h-5 w-5 shrink-0 cursor-pointer items-center justify-center rounded-[3px] border-none bg-transparent text-base opacity-0 transition-all duration-200" 
535+                               className = "hover:text-danger-light hover:bg-danger-light/10 flex h-5 w-5 shrink-0 cursor-pointer items-center justify-center rounded-[3px] border-none bg-transparent text-base text-gray-600  opacity-0 transition-all duration-200" 
536536                            > 
537537                              ×
538538                            </ button > 
@@ -544,12 +544,12 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
544544
545545                        { isExpanded  &&  ( 
546546                          < div  id = { workspaceListId } > 
547-                             < div  className = "border-gray-900  border-b  px-3 py-2 pl-[22px]" > 
547+                             < div  className = "border-b  border-gray-900  px-3 py-2 pl-[22px]" > 
548548                              < button 
549549                                onClick = { ( )  =>  onAddWorkspace ( projectPath ) } 
550550                                data-project-path = { projectPath } 
551551                                aria-label = { `Add workspace to ${ projectName }  ` } 
552-                                 className = "border-gray-700  hover:border-gray-800-darker w-full cursor-pointer rounded border border-dashed bg-transparent px-3 py-1.5 text-left text-[13px] text-gray-500 transition-all duration-200 hover:bg-gray-900 hover:text-gray-200" 
552+                                 className = "hover:border-gray-800-darker w-full cursor-pointer rounded border border-dashed border-gray-700  bg-transparent px-3 py-1.5 text-left text-[13px] text-gray-500 transition-all duration-200 hover:bg-gray-900 hover:text-gray-200" 
553553                              > 
554554                                + New Workspace
555555                                { selectedWorkspace ?. projectPath  ===  projectPath  && 
@@ -592,16 +592,16 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
592592                                            : `Expand workspaces older than ${ formatOldWorkspaceThreshold ( ) }  ` 
593593                                        } 
594594                                        aria-expanded = { showOldWorkspaces } 
595-                                         className = "border-gray-900  flex w-full cursor-pointer items-center justify-between border-t border-none bg-transparent px-3 py-2 pl-[22px] text-xs font-medium text-gray-500 transition-all duration-150 hover:bg-white/[0.03] hover:text-gray-400 [&:hover_.arrow]:text-gray-400" 
595+                                         className = "flex w-full cursor-pointer items-center justify-between border-t border-none border-gray-900  bg-transparent px-3 py-2 pl-[22px] text-xs font-medium text-gray-500 transition-all duration-150 hover:bg-white/[0.03] hover:text-gray-400 [&:hover_.arrow]:text-gray-400" 
596596                                      > 
597597                                        < div  className = "flex items-center gap-1.5" > 
598598                                          < span > Older than { formatOldWorkspaceThreshold ( ) } </ span > 
599-                                           < span  className = "text-gray-400 font-normal " > 
599+                                           < span  className = "font-normal  text-gray-400" > 
600600                                            ({ old . length } )
601601                                          </ span > 
602602                                        </ div > 
603603                                        < span 
604-                                           className = "arrow text-gray-400 text- [11px] transition-transform duration-200 ease-in-out" 
604+                                           className = "arrow text-[11px] text-gray-400  transition-transform duration-200 ease-in-out" 
605605                                          style = { { 
606606                                            transform : showOldWorkspaces 
607607                                              ? "rotate(90deg)" 
@@ -629,7 +629,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
629629          < TooltipWrapper  inline > 
630630            < button 
631631              onClick = { onToggleCollapsed } 
632-               className = "border-gray-950  mt-auto flex h-9 w-full cursor-pointer items-center justify-center border-t border-none bg-transparent p-0 text-sm text-gray-500 transition-all duration-200 hover:bg-gray-900 hover:text-gray-200" 
632+               className = "mt-auto flex h-9 w-full cursor-pointer items-center justify-center border-t border-none border-gray-950  bg-transparent p-0 text-sm text-gray-500 transition-all duration-200 hover:bg-gray-900 hover:text-gray-200" 
633633            > 
634634              { collapsed  ? "»"  : "«" } 
635635            </ button > 
0 commit comments