diff --git a/internal/tui/bubbles/git/log/bubble.go b/internal/tui/bubbles/git/log/bubble.go index 787eff599c1d4f149140e817664c6049964254a5..579876737765bc3ab00251642fb2076600478cae 100644 --- a/internal/tui/bubbles/git/log/bubble.go +++ b/internal/tui/bubbles/git/log/bubble.go @@ -405,7 +405,7 @@ func (b *Bubble) View() string { case logState: return b.list.View() case loadingState: - return fmt.Sprintf("%s loading commit", b.spinner.View()) + return fmt.Sprintf("%s loading commit…", b.spinner.View()) case errorState: return b.error.ViewWithPrefix(b.style, "Error") case commitState: diff --git a/internal/tui/style/style.go b/internal/tui/style/style.go index ab2063e27124d16bdf97126c87286ef01d38b3bf..632b91dc3e92046b39f175e4a9f583ea828b3930 100644 --- a/internal/tui/style/style.go +++ b/internal/tui/style/style.go @@ -198,7 +198,8 @@ func DefaultStyles() *Styles { Width(52) // for now s.AboutNoReadme = lipgloss.NewStyle(). - MarginLeft(1). + MarginTop(1). + MarginLeft(2). Foreground(lipgloss.Color("#626262")) s.LogItemInactive = lipgloss.NewStyle(). @@ -275,7 +276,8 @@ func DefaultStyles() *Styles { s.TreeNoItems = s.AboutNoReadme.Copy() s.Spinner = lipgloss.NewStyle(). - MarginLeft(1). + MarginTop(1). + MarginLeft(2). Foreground(lipgloss.Color("205")) return s