Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/styles/styles.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ func SectionHeader(title string) string {
// Make header more prominent with accent color and bold
header := lipgloss.Style{}.Foreground(promptColor).Bold(true).Render(titleWithColon)
separator := MutedStyle.Render(strings.Repeat(sep, 36))
return header + "\n" + separator
return header + "\n" + separator + "\n"
}
return titleWithColon + "\n" + strings.Repeat(sep, 36)
return titleWithColon + "\n" + strings.Repeat(sep, 36) + "\n"
}

// Highlight outputs highlighted/important text
Expand Down
Loading