Skip to content

Commit

Permalink
feat: use monospace font for console (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesliu96 authored Sep 9, 2024
1 parent 28a5a82 commit 36d4569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Controller/Controller.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ const Controller = () => {
</div>
<div className="flex w-full flex-col items-center justify-center gap-1">
<textarea
className="h-[350px] w-full rounded bg-gray-600 p-2 text-white"
className="h-[350px] w-full rounded bg-gray-600 p-2 text-white font-mono"
readOnly
value={consoleMessageList}
id="serial_console"
Expand All @@ -533,7 +533,7 @@ const Controller = () => {
sendCommand();
}
}}
className="w-full rounded-md bg-gray-600 p-2 text-white"
className="w-full rounded-md bg-gray-600 p-2 text-white font-mono"
/>
<button
type="submit"
Expand Down

0 comments on commit 36d4569

Please sign in to comment.