summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop/src/components
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-12-15 06:06:05 -0600
committerAdam <[email protected]>2025-12-15 10:20:18 -0600
commit315836c0b7f7f852c99d8c9945fa15e63a3ea2bc (patch)
treea817c3d791234dc791c2fe29610bc4287a0f2d3c /packages/desktop/src/components
parentc0d009d5f33c368f61ebe9a87460b1fbf5801d33 (diff)
downloadopencode-315836c0b7f7f852c99d8c9945fa15e63a3ea2bc.tar.gz
opencode-315836c0b7f7f852c99d8c9945fa15e63a3ea2bc.zip
wip(desktop): progress
Diffstat (limited to 'packages/desktop/src/components')
-rw-r--r--packages/desktop/src/components/prompt-input.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/desktop/src/components/prompt-input.tsx b/packages/desktop/src/components/prompt-input.tsx
index fd5574990..4dd8d878c 100644
--- a/packages/desktop/src/components/prompt-input.tsx
+++ b/packages/desktop/src/components/prompt-input.tsx
@@ -591,8 +591,8 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
{/* Popover for file mentions and slash commands */}
<Show when={store.popover}>
<div
- class="absolute inset-x-0 -top-3 -translate-y-full origin-bottom-left max-h-[252px] min-h-10
- overflow-auto no-scrollbar flex flex-col p-2 pb-0 rounded-md
+ class="absolute inset-x-0 -top-3 -translate-y-full origin-bottom-left max-h-80 min-h-10
+ overflow-auto no-scrollbar flex flex-col p-2 rounded-md
border border-border-base bg-surface-raised-stronger-non-alpha shadow-md"
>
<Switch>
@@ -602,7 +602,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
{(i) => (
<button
classList={{
- "w-full flex items-center gap-x-2 rounded-md px-2 py-1": true,
+ "w-full flex items-center gap-x-2 rounded-md px-2 py-0.5": true,
"bg-surface-raised-base-hover": active() === i,
}}
onClick={() => handleFileSelect(i)}