diff options
| author | Jacob Richman <[email protected]> | 2025-07-25 17:36:19 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-26 00:36:19 +0000 |
| commit | b089845f1c34e5475bcae9cc8eb42fba8be9adc4 (patch) | |
| tree | 04c74632fefb91f954a8aded97427d2d1ff5500b /packages/cli/src/ui/components | |
| parent | 21fef1620d78f07af01a75b8bbbeeb15798e73ef (diff) | |
fix(ui): remove extraneous whitespace from startup screen (#3990)
Diffstat (limited to 'packages/cli/src/ui/components')
| -rw-r--r-- | packages/cli/src/ui/components/Footer.tsx | 2 | ||||
| -rw-r--r-- | packages/cli/src/ui/components/Header.tsx | 1 | ||||
| -rw-r--r-- | packages/cli/src/ui/components/Tips.tsx | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx index 5b9e3af7..af3d8437 100644 --- a/packages/cli/src/ui/components/Footer.tsx +++ b/packages/cli/src/ui/components/Footer.tsx @@ -46,7 +46,7 @@ export const Footer: React.FC<FooterProps> = ({ const percentage = promptTokenCount / limit; return ( - <Box marginTop={1} justifyContent="space-between" width="100%"> + <Box justifyContent="space-between" width="100%"> <Box> {vimMode && <Text color={Colors.Gray}>[{vimMode}] </Text>} {nightly ? ( diff --git a/packages/cli/src/ui/components/Header.tsx b/packages/cli/src/ui/components/Header.tsx index b99382e0..4038e415 100644 --- a/packages/cli/src/ui/components/Header.tsx +++ b/packages/cli/src/ui/components/Header.tsx @@ -38,7 +38,6 @@ export const Header: React.FC<HeaderProps> = ({ return ( <Box - marginBottom={1} alignItems="flex-start" width={artWidth} flexShrink={0} diff --git a/packages/cli/src/ui/components/Tips.tsx b/packages/cli/src/ui/components/Tips.tsx index 0db6611c..4aa6c112 100644 --- a/packages/cli/src/ui/components/Tips.tsx +++ b/packages/cli/src/ui/components/Tips.tsx @@ -16,7 +16,7 @@ interface TipsProps { export const Tips: React.FC<TipsProps> = ({ config }) => { const geminiMdFileCount = config.getGeminiMdFileCount(); return ( - <Box flexDirection="column" marginBottom={1}> + <Box flexDirection="column"> <Text color={Colors.Foreground}>Tips for getting started:</Text> <Text color={Colors.Foreground}> 1. Ask questions, edit files, or run commands. |
