Skip to content

Commit

Permalink
Use a monospace font for inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
gingershaped committed Oct 31, 2024
1 parent 214d7d5 commit 62cc3bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/latest/scripts/ui/Inputs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function InputElement({ group, input, index, onInputChange, onInputDelete }: Inp
return <BsInputGroup className="mb-2 px-2" ref={provided.innerRef} {...provided.draggableProps}>
<BsInputGroup.Text {...provided.dragHandleProps}><i className="bi bi-grip-vertical"></i></BsInputGroup.Text>
<TextareaAutosize
className="form-control"
className="form-control font-monospace"
placeholder="Input"
value={input.input}
onChange={(e) => onInputChange(e.currentTarget.value)}
Expand Down

0 comments on commit 62cc3bd

Please sign in to comment.