summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2026-01-23 20:58:17 +0000
committerDavid Hill <[email protected]>2026-01-24 06:18:55 +0000
commit258d207fd6e573201101b103140df74a7c6cf678 (patch)
treeb1b5f85d3d064f0e1d27c588521a049195af656a
parent4b64bff11beb2fa48c969621f1ec5db232de11e6 (diff)
downloadopencode-258d207fd6e573201101b103140df74a7c6cf678.tar.gz
opencode-258d207fd6e573201101b103140df74a7c6cf678.zip
fix(app): increase comment font size to 12px
-rw-r--r--packages/app/src/components/prompt-input.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx
index ac69535f7..201c52c9e 100644
--- a/packages/app/src/components/prompt-input.tsx
+++ b/packages/app/src/components/prompt-input.tsx
@@ -1723,7 +1723,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
/>
</div>
<Show when={item.comment}>
- {(comment) => <div class="text-11-regular text-text-strong ml-5 pr-1 truncate">{comment()}</div>}
+ {(comment) => <div class="text-12-regular text-text-strong ml-5 pr-1 truncate">{comment()}</div>}
</Show>
</div>
)