Skip to content

Commit

Permalink
chore: update table style
Browse files Browse the repository at this point in the history
  • Loading branch information
Telemaco019 committed Aug 24, 2024
1 parent 43fba04 commit 9077d4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Binary file modified docs/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions pkg/cmd/list_duplicated.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ func listDuplicatedResources(client core.Client, namespace string) error {
fmt.Printf("No duplicated resources found in namespace %q\n", namespace)
return nil
}
headerStyle := lipgloss.NewStyle().Foreground(lipgloss.Color("#56bc8b")).Bold(true).Padding(0, 1)
headerStyle := lipgloss.NewStyle().Bold(true).Padding(0, 1)
defaultStyle := lipgloss.NewStyle().Padding(0, 1)
t := table.New().
Border(lipgloss.RoundedBorder()).
t := table.New().Border(lipgloss.HiddenBorder()).
StyleFunc(func(row, col int) lipgloss.Style {
switch {
case row == 0:
Expand Down

0 comments on commit 9077d4c

Please sign in to comment.