Skip to content

Commit fa2f67d

Browse files
fix: also drop left padding in choose (#597)
* fix: also drop left padding in choose * chore(choose): wipe base theme Co-authored-by: Maas Lalani <maas@lalani.dev> --------- Co-authored-by: Maas Lalani <maas@lalani.dev>
1 parent baf36ae commit fa2f67d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

choose/command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func (o Options) Run() error {
3535
theme := huh.ThemeCharm()
3636
options := huh.NewOptions(o.Options...)
3737

38-
theme.Focused.Base = theme.Focused.Base.Border(lipgloss.Border{})
38+
theme.Focused.Base = lipgloss.NewStyle()
3939
theme.Focused.Title = o.HeaderStyle.ToLipgloss()
4040
theme.Focused.SelectSelector = o.CursorStyle.ToLipgloss().SetString(o.Cursor)
4141
theme.Focused.MultiSelectSelector = o.CursorStyle.ToLipgloss().SetString(o.Cursor)

0 commit comments

Comments
 (0)