Skip to content

Commit

Permalink
style(#143): 🚨 fix lint issue
Browse files Browse the repository at this point in the history
remove deprecated items

Signed-off-by: Andy Augustin <[email protected]>
  • Loading branch information
AndreasAugustin committed May 24, 2024
1 parent d356608 commit 4fb9fa0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/ui/styles.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ var docStyle = lipgloss.NewStyle().Margin(1, 2)
var (
textInputFocusedStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("205"))
textInputsBlurredStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("240"))
textInputsCursorStyle = textInputFocusedStyle.Copy()
textInputsCursorStyle = textInputFocusedStyle
noStyle = lipgloss.NewStyle()
helpStyle = textInputsBlurredStyle.Copy()
helpStyle = textInputsBlurredStyle
cursorModeHelpStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("244"))

focusedButton = textInputFocusedStyle.Copy().Render("[ Submit ]")
focusedButton = textInputFocusedStyle.Render("[ Submit ]")
blurredButton = fmt.Sprintf("[ %s ]", textInputsBlurredStyle.Render("Submit"))
)

0 comments on commit 4fb9fa0

Please sign in to comment.