chore: updated borders in tui ab703409
Steve Simkins · 2026-05-22 15:49 1 file(s) · +2 −2
pkg/tui/styles.go +2 −2
29 29
// Border returns the inactive pane border style using the given border.
30 30
func Border(b lipgloss.Border) lipgloss.Style {
31 31
	return lipgloss.NewStyle().
32 -
		Border(b).
32 +
		Border(lipgloss.RoundedBorder()).
33 33
		BorderForeground(lipgloss.Color("8"))
34 34
}
35 35
36 36
// BorderActive returns the focused pane border style using the given border.
37 37
func BorderActive(b lipgloss.Border) lipgloss.Style {
38 38
	return lipgloss.NewStyle().
39 -
		Border(b).
39 +
		Border(lipgloss.RoundedBorder()).
40 40
		BorderForeground(lipgloss.Color("3"))
41 41
}