diff options
| author | David Hill <[email protected]> | 2026-01-16 13:46:15 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-16 13:46:15 +0000 |
| commit | a49102db01d97ae86dc60797417f6461cbb1b64c (patch) | |
| tree | 08274430bcffe69a1f93f04a1d8043b2a1604859 | |
| parent | 21012fab4bc10236ea9dc960592eb761da9aeae3 (diff) | |
| download | opencode-a49102db01d97ae86dc60797417f6461cbb1b64c.tar.gz opencode-a49102db01d97ae86dc60797417f6461cbb1b64c.zip | |
fix: truncate the workspace name on hover
| -rw-r--r-- | packages/app/src/pages/layout.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/pages/layout.tsx b/packages/app/src/pages/layout.tsx index 47287b05d..786107698 100644 --- a/packages/app/src/pages/layout.tsx +++ b/packages/app/src/pages/layout.tsx @@ -1151,7 +1151,7 @@ export default function Layout(props: ParentProps) { > <div class="px-2 py-1"> <div class="group/trigger relative"> - <Collapsible.Trigger class="flex items-center justify-between w-full pl-2 pr-16 py-1.5 rounded-md hover:bg-surface-raised-base-hover"> + <Collapsible.Trigger class="flex items-center justify-between w-full pl-2 pr-2 py-1.5 rounded-md hover:bg-surface-raised-base-hover transition-all group-hover/trigger:pr-16 group-focus-within/trigger:pr-16"> <div class="flex items-center gap-1 min-w-0"> <div class="flex items-center justify-center shrink-0 size-6"> <Icon name="branch" size="small" /> |
