Skip to content

Commit c4e7e77

Browse files
committed
fix(css): fix typo in a class name
1 parent 3470d2b commit c4e7e77

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

public/ttty.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ span.terminal-prompt {
3737
color: #929292;
3838
}
3939

40-
span.termainal-command {
40+
span.terminal-command {
4141
color: #ffff7d;
4242
}
4343

src/api/print.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { create } from '../helpers/dom'
44
const print = (content: string, isCommand: boolean, commandContainer: HTMLElement, input: HTMLElement, prompt: string) => {
55
const line = create('p', undefined, isCommand ? prompt : content)
66
if (isCommand) {
7-
const cmd = create('span', 'termainal-command', content)
7+
const cmd = create('span', 'terminal-command', content)
88
line.append(cmd)
99
}
1010
commandContainer.append(line)

0 commit comments

Comments
 (0)