From b722b1922e07eb282b94e2ef522fc3bfd276e1c2 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Fri, 5 Sep 2025 22:06:06 +0300 Subject: [PATCH] Show notes editor larger and monospace --- lib/music_library_web/components/notes_component.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/music_library_web/components/notes_component.ex b/lib/music_library_web/components/notes_component.ex index d501b9db..afbe15d4 100644 --- a/lib/music_library_web/components/notes_component.ex +++ b/lib/music_library_web/components/notes_component.ex @@ -24,7 +24,7 @@ defmodule MusicLibraryWeb.NotesComponent do <.sheet id={@sheet_id} placement="right" - class="min-w-xs sm:min-w-sm" + class="min-w-xs sm:min-w-lg lg:min-w-2xl" > <.simple_form for={@form} @@ -34,7 +34,7 @@ defmodule MusicLibraryWeb.NotesComponent do phx-auto-recover="recover_form" phx-submit="save" > - <.textarea class="w-full h-96" field={@form[:notes]} label={gettext("Notes")} /> + <.textarea class="w-full h-96 font-mono" field={@form[:notes]} label={gettext("Notes")} /> <:actions>
<.button