Fix UI layout: adjust chat panel and input widths to fill screen

This commit is contained in:
Jose Luis Montañes Ojados
2026-01-17 00:03:54 +01:00
parent 36b9d371d2
commit 0b6399ed61

View File

@@ -627,14 +627,14 @@ func (m *Model) View() string {
Border(lipgloss.RoundedBorder()). Border(lipgloss.RoundedBorder()).
BorderForeground(lipgloss.Color("63")). BorderForeground(lipgloss.Color("63")).
Padding(0, 1). Padding(0, 1).
Width(rightBoxWidth - 4). Width(rightBoxWidth).
Height(panelHeight) Height(panelHeight)
inputStyle := lipgloss.NewStyle(). inputStyle := lipgloss.NewStyle().
Border(lipgloss.NormalBorder()). Border(lipgloss.NormalBorder()).
BorderForeground(lipgloss.Color("63")). BorderForeground(lipgloss.Color("63")).
Padding(0, 1). Padding(0, 1).
Width(m.width - 6) Width(m.width - 2)
// Header with status bar // Header with status bar
header := m.renderStatusBar() header := m.renderStatusBar()