mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-12 12:54:07 -07:00
fix(cli): fix right border overflow in trust dialogs (#15350)
This commit is contained in:
@@ -80,14 +80,14 @@ export const FolderTrustDialog: React.FC<FolderTrustDialogProps> = ({
|
|||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box flexDirection="column">
|
<Box flexDirection="column" width="100%">
|
||||||
<Box
|
<Box
|
||||||
flexDirection="column"
|
flexDirection="column"
|
||||||
borderStyle="round"
|
borderStyle="round"
|
||||||
borderColor={theme.status.warning}
|
borderColor={theme.status.warning}
|
||||||
padding={1}
|
padding={1}
|
||||||
width="100%"
|
|
||||||
marginLeft={1}
|
marginLeft={1}
|
||||||
|
marginRight={1}
|
||||||
>
|
>
|
||||||
<Box flexDirection="column" marginBottom={1}>
|
<Box flexDirection="column" marginBottom={1}>
|
||||||
<Text bold color={theme.text.primary}>
|
<Text bold color={theme.text.primary}>
|
||||||
|
|||||||
@@ -138,14 +138,14 @@ export const MultiFolderTrustDialog: React.FC<MultiFolderTrustDialogProps> = ({
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box flexDirection="column">
|
<Box flexDirection="column" width="100%">
|
||||||
<Box
|
<Box
|
||||||
flexDirection="column"
|
flexDirection="column"
|
||||||
borderStyle="round"
|
borderStyle="round"
|
||||||
borderColor={theme.status.warning}
|
borderColor={theme.status.warning}
|
||||||
padding={1}
|
padding={1}
|
||||||
width="100%"
|
|
||||||
marginLeft={1}
|
marginLeft={1}
|
||||||
|
marginRight={1}
|
||||||
>
|
>
|
||||||
<Box flexDirection="column" marginBottom={1}>
|
<Box flexDirection="column" marginBottom={1}>
|
||||||
<Text bold color={theme.text.primary}>
|
<Text bold color={theme.text.primary}>
|
||||||
|
|||||||
Reference in New Issue
Block a user