summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/pages
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2026-01-15 18:41:41 +0000
committerDavid Hill <[email protected]>2026-01-15 19:15:21 +0000
commitbb6e350d68da9b5cfcd4bef9c8294344072e58f5 (patch)
treeb67611ab22a4ee2e1f7304f781b429871435d45b /packages/app/src/pages
parentf9a441d4f4bccc741c549a5923fb82e102fcc846 (diff)
downloadopencode-bb6e350d68da9b5cfcd4bef9c8294344072e58f5.tar.gz
opencode-bb6e350d68da9b5cfcd4bef9c8294344072e58f5.zip
fix: move left panel toggle over
- not sure how this impacts on the titlebar when the traffic lights are there
Diffstat (limited to 'packages/app/src/pages')
-rw-r--r--packages/app/src/pages/layout.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/app/src/pages/layout.tsx b/packages/app/src/pages/layout.tsx
index b480e0efe..c45da91a6 100644
--- a/packages/app/src/pages/layout.tsx
+++ b/packages/app/src/pages/layout.tsx
@@ -1333,10 +1333,10 @@ export default function Layout(props: ParentProps) {
as={IconButton}
icon="dot-grid"
variant="ghost"
- class="shrink-0 size-6 rounded-md hidden group-hover/project:flex group-focus-within/project:flex"
+ class="shrink-0 size-6 rounded-md opacity-0 group-hover/project:opacity-100 data-[expanded]:opacity-100 data-[expanded]:bg-surface-base-active"
/>
<DropdownMenu.Portal>
- <DropdownMenu.Content>
+ <DropdownMenu.Content class="mt-1">
<DropdownMenu.Item onSelect={() => dialog.show(() => <DialogEditProject project={p} />)}>
<DropdownMenu.ItemLabel>Edit project</DropdownMenu.ItemLabel>
</DropdownMenu.Item>