Skip to content

Commit dfd5f38

Browse files
committed
fix(app): icon sizes
1 parent 3b93e8d commit dfd5f38

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/app/src/components/prompt-input.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1801,7 +1801,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
18011801
}}
18021802
>
18031803
<div class="flex items-center gap-1.5">
1804-
<FileIcon node={{ path: item.path, type: "file" }} class="shrink-0 size-7" />
1804+
<FileIcon node={{ path: item.path, type: "file" }} class="shrink-0 size-3.5" />
18051805
<div class="flex items-center text-11-regular min-w-0 font-medium">
18061806
<span class="text-text-strong whitespace-nowrap">{getFilenameTruncated(item.path, 14)}</span>
18071807
<Show when={item.selection}>
@@ -1818,7 +1818,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
18181818
type="button"
18191819
icon="close-small"
18201820
variant="ghost"
1821-
class="ml-auto size-7 opacity-0 group-hover:opacity-100 transition-all"
1821+
class="ml-auto size-3.5 opacity-0 group-hover:opacity-100 transition-all"
18221822
onClick={(e) => {
18231823
e.stopPropagation()
18241824
if (item.commentID) comments.remove(item.path, item.commentID)

0 commit comments

Comments
 (0)