From c82a060eca41b990b4dd89cecffb874b2133af6f Mon Sep 17 00:00:00 2001 From: adamdottv <2363879+adamdottv@users.noreply.github.com> Date: Wed, 2 Jul 2025 16:08:06 -0500 Subject: feat(tui): file viewer, select messages --- packages/tui/internal/components/modal/modal.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/tui/internal/components/modal') diff --git a/packages/tui/internal/components/modal/modal.go b/packages/tui/internal/components/modal/modal.go index 6bce64247..aa81a83e7 100644 --- a/packages/tui/internal/components/modal/modal.go +++ b/packages/tui/internal/components/modal/modal.go @@ -135,11 +135,11 @@ func (m *Modal) Render(contentView string, background string) string { col := (bgWidth - modalWidth) / 2 return layout.PlaceOverlay( - col, + col-1, // TODO: whyyyyy row, modalView, background, layout.WithOverlayBorder(), - layout.WithOverlayBorderColor(t.Primary()), + layout.WithOverlayBorderColor(t.BorderActive()), ) } -- cgit v1.2.3