Skip to content

Commit

Permalink
Fix: Corrected margins on breadcrumbs default
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmulvaney committed Jan 2, 2025
1 parent d1001d7 commit 08a3374
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions breadcrumbs/breadcrumbs.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ type Styles struct {

func DefaultStyles() Styles {
return Styles{
Crumb: lipgloss.NewStyle().Padding(0, 1).Margin(1).Foreground(lipgloss.Color("0")).Background(lipgloss.Color("4")).Bold(true),
Active: lipgloss.NewStyle().Padding(0, 1).Foreground(lipgloss.Color("0")).Background(lipgloss.Color("214")).Bold(true),
Crumb: lipgloss.NewStyle().Padding(0, 1).MarginLeft(1).Foreground(lipgloss.Color("0")).Background(lipgloss.Color("4")).Bold(true),
Active: lipgloss.NewStyle().Padding(0, 1).MarginLeft(1).Foreground(lipgloss.Color("0")).Background(lipgloss.Color("214")).Bold(true),
}
}

Expand Down

0 comments on commit 08a3374

Please sign in to comment.