fix(tui): find dialog bg color

This commit is contained in:
adamdotdevin
2025-07-14 09:09:46 -05:00
parent 8d0350d923
commit 229a280652
3 changed files with 31 additions and 9 deletions

View File

@@ -133,7 +133,7 @@ func (f *findDialogComponent) View() string {
listView := f.list.View()
return styles.NewStyle().
Height(12).
Background(t.BackgroundElement()).
Background(t.BackgroundPanel()).
Width(f.width - 4).
Render(inputView + "\n" + listView)
}