mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: make settings search results same width as search input (#11617)
Changed the settings search results to be the same width as the search input. This ensures the results dropdown does not overflow outside of the parent panel.
This commit is contained in:
parent
d8cfbfdb05
commit
159bf2e9f1
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ export function SettingsSearch({ index, onNavigate, sections }: SettingsSearchPr
|
|||
inputRef={inputRef}
|
||||
/>
|
||||
{searchQuery && isOpen && (
|
||||
<div className="absolute top-full min-w-[300px] right-0 mt-2 border border-vscode-dropdown-border bg-vscode-dropdown-background rounded-2xl overflow-hidden shadow-xl z-50">
|
||||
<div className="absolute top-full left-0 w-full mt-2 border border-vscode-dropdown-border bg-vscode-dropdown-background rounded-2xl overflow-hidden shadow-xl z-50">
|
||||
<SettingsSearchResults
|
||||
results={results}
|
||||
query={searchQuery}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue