Skip to content

Commit 935866f

Browse files
committed
feat(ui): enhance paginator dot styling with padding
Improves the visual appearance of the paginator by adding padding to both active and inactive dots. This change enhances readability and provides a more consistent look across different UI elements.
1 parent eda7ea7 commit 935866f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

‎main.go‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,9 +381,11 @@ func NewModel() Model {
381381
p.Type = paginator.Dots
382382
p.ActiveDot = lipgloss.NewStyle().
383383
Foreground(lipgloss.Color(config.ClockWerkColor)).
384-
Render("⚫")
384+
Padding(0, 1).
385+
Render("● ")
385386
p.InactiveDot = lipgloss.NewStyle().
386-
Render("⚫")
387+
Padding(0, 1).
388+
Render("○ ")
387389
p.SetTotalPages(3)
388390

389391
helpModel := help.New()

0 commit comments

Comments
 (0)