From 9b8baefc360c94229e92fc0b42dd97e808d267af Mon Sep 17 00:00:00 2001 From: April Hall Date: Fri, 7 Feb 2025 22:32:34 -0500 Subject: [PATCH] fix: Prevent textarea from being user resizeable --- src/routes/channel/[channel]/+page.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/channel/[channel]/+page.svelte b/src/routes/channel/[channel]/+page.svelte index 46e6717..c636d42 100644 --- a/src/routes/channel/[channel]/+page.svelte +++ b/src/routes/channel/[channel]/+page.svelte @@ -66,9 +66,9 @@ bind:value={msg} bind:this={textareaRef} use:autoResize - class="flex h-10 min-h-10 w-full rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm - placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring - disabled:cursor-not-allowed disabled:opacity-50"> + class="flex h-10 min-h-10 w-full resize-none rounded-md border border-input bg-transparent px-3 py-2 text-sm + shadow-sm placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 + focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50">