mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-27 13:34:15 -07:00
fix: remove extra padding in Composer (#19529)
This commit is contained in:
@@ -191,7 +191,7 @@ export const Composer = ({ isFocused = true }: { isFocused?: boolean }) => {
|
|||||||
|
|
||||||
{showUiDetails && <TodoTray />}
|
{showUiDetails && <TodoTray />}
|
||||||
|
|
||||||
<Box marginTop={1} width="100%" flexDirection="column">
|
<Box width="100%" flexDirection="column">
|
||||||
<Box
|
<Box
|
||||||
width="100%"
|
width="100%"
|
||||||
flexDirection={isNarrow ? 'column' : 'row'}
|
flexDirection={isNarrow ? 'column' : 'row'}
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
||||||
|
|
||||||
exports[`Composer > Snapshots > matches snapshot in idle state 1`] = `
|
exports[`Composer > Snapshots > matches snapshot in idle state 1`] = `
|
||||||
"
|
" ShortcutsHint
|
||||||
ShortcutsHint
|
|
||||||
────────────────────────────────────────────────────────────────────────────────────────────────────
|
────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||||
ApprovalModeIndicator StatusDisplay
|
ApprovalModeIndicator StatusDisplay
|
||||||
InputPrompt: Type your message or @path/to/file
|
InputPrompt: Type your message or @path/to/file
|
||||||
@@ -11,22 +10,19 @@ Footer
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`Composer > Snapshots > matches snapshot in minimal UI mode 1`] = `
|
exports[`Composer > Snapshots > matches snapshot in minimal UI mode 1`] = `
|
||||||
"
|
" ShortcutsHint
|
||||||
ShortcutsHint
|
|
||||||
InputPrompt: Type your message or @path/to/file
|
InputPrompt: Type your message or @path/to/file
|
||||||
"
|
"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`Composer > Snapshots > matches snapshot in minimal UI mode while loading 1`] = `
|
exports[`Composer > Snapshots > matches snapshot in minimal UI mode while loading 1`] = `
|
||||||
"
|
" LoadingIndicator
|
||||||
LoadingIndicator
|
|
||||||
InputPrompt: Type your message or @path/to/file
|
InputPrompt: Type your message or @path/to/file
|
||||||
"
|
"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`Composer > Snapshots > matches snapshot in narrow view 1`] = `
|
exports[`Composer > Snapshots > matches snapshot in narrow view 1`] = `
|
||||||
"
|
"
|
||||||
|
|
||||||
ShortcutsHint
|
ShortcutsHint
|
||||||
────────────────────────────────────────
|
────────────────────────────────────────
|
||||||
ApprovalModeIndicator
|
ApprovalModeIndicator
|
||||||
@@ -39,8 +35,7 @@ Footer
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`Composer > Snapshots > matches snapshot while streaming 1`] = `
|
exports[`Composer > Snapshots > matches snapshot while streaming 1`] = `
|
||||||
"
|
" LoadingIndicator: Thinking ShortcutsHint
|
||||||
LoadingIndicator: Thinking ShortcutsHint
|
|
||||||
────────────────────────────────────────────────────────────────────────────────────────────────────
|
────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||||
ApprovalModeIndicator
|
ApprovalModeIndicator
|
||||||
InputPrompt: Type your message or @path/to/file
|
InputPrompt: Type your message or @path/to/file
|
||||||
|
|||||||
Reference in New Issue
Block a user