fix: style adjustments

Ayman Bagabas created

* Adjust spinner and no readme comment margins

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

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:

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