|
|
@@ -873,17 +873,24 @@ export function Prompt(props: PromptProps) {
|
|
|
borderColor={highlight()}
|
|
|
customBorderChars={{
|
|
|
...EmptyBorder,
|
|
|
- vertical: "╹",
|
|
|
+ vertical: theme.backgroundElement.a !== 0 ? "╹" : " ",
|
|
|
}}
|
|
|
>
|
|
|
<box
|
|
|
height={1}
|
|
|
border={["bottom"]}
|
|
|
borderColor={theme.backgroundElement}
|
|
|
- customBorderChars={{
|
|
|
- ...EmptyBorder,
|
|
|
- horizontal: "▀",
|
|
|
- }}
|
|
|
+ customBorderChars={
|
|
|
+ theme.backgroundElement.a !== 0
|
|
|
+ ? {
|
|
|
+ ...EmptyBorder,
|
|
|
+ horizontal: "▀",
|
|
|
+ }
|
|
|
+ : {
|
|
|
+ ...EmptyBorder,
|
|
|
+ horizontal: " ",
|
|
|
+ }
|
|
|
+ }
|
|
|
/>
|
|
|
</box>
|
|
|
<box flexDirection="row" justifyContent="space-between">
|