feat(tui): inline detail panel, titled borders, panel focus #146

Merged
lerko merged 10 commits from feat/inline-detail into main 2026-06-21 16:44:01 +00:00
Showing only changes of commit 54299583d6 - Show all commits
+2 -2
View File
@@ -18,8 +18,8 @@ func (m Model) viewDetailInline(width int) string {
var b strings.Builder
title := m.st.titleStyle.Render(site.Name)
b.WriteString(" " + title + "\n")
title := m.st.dangerStyle.Render("▶ " + site.Name)
b.WriteString(title + "\n")
divW := width - 4
if divW < 20 {