diff options
| author | Adam <[email protected]> | 2026-02-02 11:22:00 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2026-02-02 14:24:24 -0600 |
| commit | dfd5f38408aa0a905a9cda40f1ce077777dce5e0 (patch) | |
| tree | 5d24289f469f0dabcb37970725f9428306d3772d | |
| parent | 3b93e8d95cfc30d1a85fbb76694bdb7f49dff1e9 (diff) | |
| download | opencode-dfd5f38408aa0a905a9cda40f1ce077777dce5e0.tar.gz opencode-dfd5f38408aa0a905a9cda40f1ce077777dce5e0.zip | |
fix(app): icon sizes
| -rw-r--r-- | packages/app/src/components/prompt-input.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx index 1c84c3610..d31d0b2a3 100644 --- a/packages/app/src/components/prompt-input.tsx +++ b/packages/app/src/components/prompt-input.tsx @@ -1801,7 +1801,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => { }} > <div class="flex items-center gap-1.5"> - <FileIcon node={{ path: item.path, type: "file" }} class="shrink-0 size-7" /> + <FileIcon node={{ path: item.path, type: "file" }} class="shrink-0 size-3.5" /> <div class="flex items-center text-11-regular min-w-0 font-medium"> <span class="text-text-strong whitespace-nowrap">{getFilenameTruncated(item.path, 14)}</span> <Show when={item.selection}> @@ -1818,7 +1818,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => { type="button" icon="close-small" variant="ghost" - class="ml-auto size-7 opacity-0 group-hover:opacity-100 transition-all" + class="ml-auto size-3.5 opacity-0 group-hover:opacity-100 transition-all" onClick={(e) => { e.stopPropagation() if (item.commentID) comments.remove(item.path, item.commentID) |
