Skip to content

Commit

Permalink
style: Terminal > Prompt 디자인 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
YuHyun-P authored and flydog98 committed Dec 14, 2023
1 parent 362b827 commit bf2170a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/terminal/Prompt.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { prompt as promptStyle } from "./Terminal.css";

export default function Prompt() {
return <span className={promptStyle}>$</span>;
return <span className={promptStyle}>&gt;&gt;</span>;
}
4 changes: 3 additions & 1 deletion packages/frontend/src/components/terminal/Terminal.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,15 @@ export const prompt = style({
position: "absolute",
top: 1,
left: 0,
color: color.$semantic.primary,
fontWeight: 700,
});

export const stdinContainer = style({ position: "relative" });

export const stdin = style({
display: "block",
textIndent: 16,
textIndent: 22,
});

export const commandInput = style({
Expand Down

0 comments on commit bf2170a

Please sign in to comment.