diff options
| author | David Hill <[email protected]> | 2026-01-15 18:04:47 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-15 19:15:21 +0000 |
| commit | 1c05ebaea2616ed605f588733464337c21377a5c (patch) | |
| tree | c9aa825314e8a821f66e8c91aa9c620661a22e9d | |
| parent | 520c47e81d543cd2fe2f51af12bd7f48b831d16c (diff) | |
| download | opencode-1c05ebaea2616ed605f588733464337c21377a5c.tar.gz opencode-1c05ebaea2616ed605f588733464337c21377a5c.zip | |
fix: show project options on hover of row
| -rw-r--r-- | packages/app/src/pages/layout.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/app/src/pages/layout.tsx b/packages/app/src/pages/layout.tsx index 02e2628c0..6e2edf5d3 100644 --- a/packages/app/src/pages/layout.tsx +++ b/packages/app/src/pages/layout.tsx @@ -1319,7 +1319,7 @@ export default function Layout(props: ParentProps) { {(p) => ( <> <div class="shrink-0 px-2 py-1"> - <div class="flex items-start justify-between gap-2 p-2"> + <div class="group/project flex items-start justify-between gap-2 p-2 pr-1"> <div class="flex flex-col min-w-0"> <span class="text-16-medium text-text-strong truncate">{projectName()}</span> <Tooltip placement="right" value={project()?.worktree} class="shrink-0"> @@ -1333,7 +1333,7 @@ export default function Layout(props: ParentProps) { as={IconButton} icon="dot-grid" variant="ghost" - class="shrink-0 size-6 rounded-md" + class="shrink-0 size-6 rounded-md hidden group-hover/project:flex group-focus-within/project:flex" /> <DropdownMenu.Portal> <DropdownMenu.Content> |
