Skip to content

Commit

Permalink
chore: dont wrap terminal commands
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Oct 19, 2020
1 parent 6eeff3f commit 284b09e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Terminal/CommandLine.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const CommandLine = ({ cursor, children, prompt }) => {
css={css`
position: relative;
color: #fafafa;
white-space: pre-wrap;
white-space: pre;
&:empty {
height: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Terminal/ShellOutput.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const ShellOutput = ({ line }) => (
<div
css={css`
color: #fafafa;
white-space: pre-wrap;
white-space: pre;
`}
>
{tokenize(line).map((token, key) => (
Expand Down

0 comments on commit 284b09e

Please sign in to comment.