diff --git a/internal/tui/components/dialogs/quit/quit.go b/internal/tui/components/dialogs/quit/quit.go index 190303b71eaf31984d0c0c164cb1ae39cc8fa9fe..763dc842d386a072176e1a26741d8b68c1e2993b 100644 --- a/internal/tui/components/dialogs/quit/quit.go +++ b/internal/tui/components/dialogs/quit/quit.go @@ -80,8 +80,10 @@ func (q *quitDialogCmp) View() string { } const horizontalPadding = 3 - yesButton := yesStyle.Padding(0, horizontalPadding).Render("Yep!") - noButton := noStyle.Padding(0, horizontalPadding).Render("Nope") + yesButton := yesStyle.PaddingLeft(horizontalPadding).Underline(true).Render("Y") + + yesStyle.PaddingRight(horizontalPadding).Render("ep!") + noButton := noStyle.PaddingLeft(horizontalPadding).Underline(true).Render("N") + + noStyle.PaddingRight(horizontalPadding).Render("ope") buttons := baseStyle.Width(lipgloss.Width(question)).Align(lipgloss.Right).Render( lipgloss.JoinHorizontal(lipgloss.Center, yesButton, " ", noButton),