Rebrand frontend to ResolutionFlow #26

Merged
chihlasm merged 2 commits from rebrand-to-resolutionflow into main 2026-02-04 05:03:21 +00:00
Showing only changes of commit f33c3c8b29 - Show all commits

View File

@@ -136,10 +136,10 @@ function FolderItem({
)}
<Folder className="h-4 w-4 shrink-0" style={{ color: folder.color }} />
<span className="flex-1 truncate text-left">{folder.name}</span>
<span className="text-xs text-muted-foreground">{folder.tree_count}</span>
<span className="text-xs text-muted-foreground group-hover:hidden">{folder.tree_count}</span>
</button>
{/* Folder menu button */}
{/* Folder menu button - replaces tree count on hover */}
<button
onClick={(e) => {
e.stopPropagation()
@@ -147,7 +147,7 @@ function FolderItem({
}}
className={cn(
'absolute right-1 top-1/2 -translate-y-1/2 rounded p-1',
'opacity-0 group-hover:opacity-100',
'hidden group-hover:block',
'hover:bg-accent'
)}
>