Browse Source

fix(app): indent comment text to align with filename in context card

David Hill 1 month ago
parent
commit
1bf4caa0c1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/app/src/components/prompt-input.tsx

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

@@ -1720,7 +1720,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
                       />
                     </div>
                     <Show when={item.comment}>
-                      {(comment) => <div class="text-11-regular text-text-strong">{comment()}</div>}
+                      {(comment) => <div class="text-11-regular text-text-strong ml-5">{comment()}</div>}
                     </Show>
                   </div>
                 )