Skip to content

Commit

Permalink
Support monospace font in textarea input (#1565)
Browse files Browse the repository at this point in the history
  • Loading branch information
zolrath authored Dec 6, 2022
1 parent 95bf611 commit e9d88ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/livebook_web/live/output/input_component.ex
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ defmodule LivebookWeb.Output.InputComponent do
<textarea
id={@id}
data-el-input
class="input min-h-[38px] max-h-[300px] tiny-scrollbar"
class={"input min-h-[38px] max-h-[300px] tiny-scrollbar #{if(@attrs[:monospace], do: "font-mono")}"}
name="value"
phx-hook="TextareaAutosize"
phx-debounce="blur"
Expand Down

0 comments on commit e9d88ad

Please sign in to comment.