diff --git a/lib/style.go b/lib/style.go index fff0bfa..4728649 100644 --- a/lib/style.go +++ b/lib/style.go @@ -24,14 +24,11 @@ var ( // TableStyle returns the style for the table func TableStyle() table.Styles { s := table.DefaultStyles() - s.Header = s.Header. - Bold(true). - Padding(0) + s.Header = s.Header.Bold(true) s.Selected = s.Selected. Foreground(lipgloss.Color(UserConfig.Colors.Inverttext)). Background(lipgloss.Color(UserConfig.Colors.Accent)). Bold(false) - s.Cell.Padding(0) return s }