diff options
| author | Adam <[email protected]> | 2025-11-11 14:49:02 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-11-12 07:03:38 -0600 |
| commit | 71fd5966add098c92949da26a07346412ad9b804 (patch) | |
| tree | 3ed209154fb7ed63e239f71a16d835b69d09a93c /packages/desktop/src/components | |
| parent | c02230de4f188a8d5759f45f9fb86b9a78d5330a (diff) | |
| download | opencode-71fd5966add098c92949da26a07346412ad9b804.tar.gz opencode-71fd5966add098c92949da26a07346412ad9b804.zip | |
fix(desktop): styling tweaks
Diffstat (limited to 'packages/desktop/src/components')
| -rw-r--r-- | packages/desktop/src/components/prompt-input.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/desktop/src/components/prompt-input.tsx b/packages/desktop/src/components/prompt-input.tsx index 41ec71cfa..c48572d76 100644 --- a/packages/desktop/src/components/prompt-input.tsx +++ b/packages/desktop/src/components/prompt-input.tsx @@ -345,7 +345,11 @@ export const PromptInput: Component<PromptInputProps> = (props) => { return ( <div class="relative size-full _max-h-[320px] flex flex-col gap-3"> <Show when={store.popoverIsOpen}> - <div class="absolute inset-x-0 -top-3 -translate-y-full origin-bottom-left max-h-[252px] min-h-10 overflow-y-auto flex flex-col p-2 pb-0 rounded-2xl border border-border-base bg-surface-raised-stronger-non-alpha shadow-md"> + <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-2xl + border border-border-base bg-surface-raised-stronger-non-alpha shadow-md" + > <Show when={flat().length > 0} fallback={<div class="text-text-weak px-2">No matching files</div>}> <For each={flat()}> {(i) => ( |
