From 78e67080c935dbc58e66049d28ae8142eab06834 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Wed, 15 Jan 2025 01:45:17 +0200 Subject: [PATCH] Hide placeholder overflow of send textarea --- public/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/style.css b/public/style.css index 08e69ee91..f5d8da36d 100644 --- a/public/style.css +++ b/public/style.css @@ -1318,6 +1318,10 @@ button { transition: clip-path 200ms; } +#send_textarea:placeholder-shown { + overflow: hidden; +} + #send_textarea:focus-visible { /* Disable outline for the chat bar itself, we add it to the outer div */ outline: none;