style(cli): update FRAME_PADDING_AND_BORDER to match current layout

This commit is contained in:
Keith Guerin
2026-03-01 14:40:29 -08:00
parent 1721b51f7a
commit 3030a8a64a

View File

@@ -117,7 +117,7 @@ export interface InputPromptProps {
// The input content, input container, and input suggestions list may have different widths
export const calculatePromptWidths = (mainContentWidth: number) => {
const FRAME_PADDING_AND_BORDER = 6; // Border (2) + padding (4)
const FRAME_PADDING_AND_BORDER = 4; // Border (2) + padding (2)
const PROMPT_PREFIX_WIDTH = 2; // '> ' or '! '
const FRAME_OVERHEAD = FRAME_PADDING_AND_BORDER + PROMPT_PREFIX_WIDTH;