summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-06-26 12:44:44 -0500
committerJay V <[email protected]>2025-06-26 17:22:21 -0400
commit16ee8ee3794e00d454e289327409a402b9a68eaa (patch)
tree9386e4656019d648d9aad09241351f0e5807893c
parentac39308dad7b1edd1edf73c9b6fa4178a24058d8 (diff)
downloadopencode-16ee8ee3794e00d454e289327409a402b9a68eaa.tar.gz
opencode-16ee8ee3794e00d454e289327409a402b9a68eaa.zip
fix(tui): chat editor aesthetics
-rw-r--r--packages/tui/internal/components/chat/editor.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/tui/internal/components/chat/editor.go b/packages/tui/internal/components/chat/editor.go
index 3ae50d00d..72357941d 100644
--- a/packages/tui/internal/components/chat/editor.go
+++ b/packages/tui/internal/components/chat/editor.go
@@ -124,6 +124,11 @@ func (m *editorComponent) Content() string {
Width(m.width).
PaddingTop(1).
PaddingBottom(1).
+ BorderStyle(lipgloss.ThickBorder()).
+ BorderForeground(t.Border()).
+ BorderBackground(t.Background()).
+ BorderLeft(true).
+ BorderRight(true).
Render(textarea)
hint := base(m.getSubmitKeyText()) + muted(" send ")