From c42309dd3798856f0362e87a70ba084b73b8ba5f Mon Sep 17 00:00:00 2001 From: tristan Date: Mon, 11 May 2026 09:37:01 +0200 Subject: [PATCH] =?UTF-8?q?fix=20:=20hauteur=20du=20champ=20InputTextArea.?= =?UTF-8?q?vue=20qui=20augment=C3=A9=20au=20focus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/malio/input/InputTextArea.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/malio/input/InputTextArea.vue b/app/components/malio/input/InputTextArea.vue index c29c2c4..63d2f59 100644 --- a/app/components/malio/input/InputTextArea.vue +++ b/app/components/malio/input/InputTextArea.vue @@ -7,15 +7,15 @@ :name="name" :autocomplete="autocomplete" - class="floating-input peer w-full border bg-white pl-3 pr-3 py-1 outline-none placeholder:text-transparent focus:border-2 overflow-auto" + class="floating-input peer w-full border-2 bg-white pl-3 pr-3 py-1 outline-none placeholder:text-transparent overflow-auto" :class="[ isFilled ? 'border-black' : 'border-m-muted', disabled ? 'cursor-not-allowed text-black/60 border-m-muted' : 'cursor-text', hasError - ? 'border-m-danger focus:border-m-danger focus:pl-[11px]' + ? 'border-m-danger focus:border-m-danger' : hasSuccess - ? 'border-m-success focus:border-m-success focus:pl-[11px]' - : 'focus:border-m-primary focus:pl-[11px]', + ? 'border-m-success focus:border-m-success' + : 'focus:border-m-primary', textInput, showCounterComputed ? 'pb-6' : '', rounded,