Change summary
internal/tui/bubbles/git/log/bubble.go | 2 +-
internal/tui/style/style.go | 6 ++++--
2 files changed, 5 insertions(+), 3 deletions(-)
Detailed changes
@@ -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:
@@ -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