diff options
| author | David Hill <[email protected]> | 2026-01-27 17:03:38 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-27 20:13:52 +0000 |
| commit | 00c7729658ffe705faae3bcca21b6b416e9f7fbe (patch) | |
| tree | cb556ef40e98e09d54d749c743c777102329a99f | |
| parent | 18d6c2191ce42a5010659d55fb98ac19b67b0c38 (diff) | |
| download | opencode-00c7729658ffe705faae3bcca21b6b416e9f7fbe.tar.gz opencode-00c7729658ffe705faae3bcca21b6b416e9f7fbe.zip | |
fix(app): set filetree padding to 6px
| -rw-r--r-- | packages/app/src/components/file-tree.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/components/file-tree.tsx b/packages/app/src/components/file-tree.tsx index e150c1d41..3f5abfbbf 100644 --- a/packages/app/src/components/file-tree.tsx +++ b/packages/app/src/components/file-tree.tsx @@ -148,7 +148,7 @@ export default function FileTree(props: { <Dynamic component={local.as ?? "div"} classList={{ - "w-full min-w-0 h-6 flex items-center justify-start gap-x-1.5 rounded-md px-[7px] py-0 text-left hover:bg-surface-raised-base-hover active:bg-surface-base-active transition-colors cursor-pointer": true, + "w-full min-w-0 h-6 flex items-center justify-start gap-x-1.5 rounded-md px-1.5 py-0 text-left hover:bg-surface-raised-base-hover active:bg-surface-base-active transition-colors cursor-pointer": true, ...(local.classList ?? {}), [local.class ?? ""]: !!local.class, [props.nodeClass ?? ""]: !!props.nodeClass, |
