summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Footer.tsx
diff options
context:
space:
mode:
authorMiguel Solorio <[email protected]>2025-06-02 11:20:58 -0700
committerGitHub <[email protected]>2025-06-02 11:20:58 -0700
commit33052018a27ff5ea498cfa21d34e15d002ab92f7 (patch)
treea4d16fba42de38c10114c47d0b5f8df6511ab4f0 /packages/cli/src/ui/components/Footer.tsx
parentc5869db0806d04bc0d1f4da6823f9e13d22e476b (diff)
Color enhancements (#680)
Diffstat (limited to 'packages/cli/src/ui/components/Footer.tsx')
-rw-r--r--packages/cli/src/ui/components/Footer.tsx9
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx
index 61632bcb..46d669b7 100644
--- a/packages/cli/src/ui/components/Footer.tsx
+++ b/packages/cli/src/ui/components/Footer.tsx
@@ -64,10 +64,15 @@ export const Footer: React.FC<FooterProps> = ({
</Text>
) : process.env.SANDBOX === 'sandbox-exec' ? (
<Text color={Colors.AccentYellow}>
- sandbox-exec ({process.env.SEATBELT_PROFILE})
+ sandbox-exec{' '}
+ <Text color={Colors.SubtleComment}>
+ ({process.env.SEATBELT_PROFILE})
+ </Text>
</Text>
) : (
- <Text color={Colors.AccentRed}>no sandbox (see README)</Text>
+ <Text color={Colors.AccentRed}>
+ no sandbox <Text color={Colors.SubtleComment}>(see README)</Text>
+ </Text>
)}
</Box>