diff options
| author | David Hill <[email protected]> | 2026-01-17 00:30:27 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-17 00:55:13 +0000 |
| commit | ef7ef6538e347c8d7052b641e3bcb8a95099f92e (patch) | |
| tree | e04a4d8ade2c6e5118efed32c0656dc0a4e8abe7 /packages | |
| parent | d23c21023ababec01f2a80285f0f20fef1570d8e (diff) | |
| download | opencode-ef7ef6538e347c8d7052b641e3bcb8a95099f92e.tar.gz opencode-ef7ef6538e347c8d7052b641e3bcb8a95099f92e.zip | |
fix: limit search modal max-height to 480px
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/app/src/components/dialog-select-file.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/components/dialog-select-file.tsx b/packages/app/src/components/dialog-select-file.tsx index dee87b558..432e531e1 100644 --- a/packages/app/src/components/dialog-select-file.tsx +++ b/packages/app/src/components/dialog-select-file.tsx @@ -134,7 +134,7 @@ export function DialogSelectFile() { }) return ( - <Dialog class="pt-3 pb-0"> + <Dialog class="pt-3 pb-0 !max-h-[480px]"> <List search={{ placeholder: "Search files and commands", autofocus: true, hideIcon: true, class: "pl-3 pr-2 !mb-0" }} emptyMessage="No results found" |
