From 5f1dc834cdfa0a35e9267d025556a83f234121b0 Mon Sep 17 00:00:00 2001 From: tristan Date: Wed, 3 Jun 2026 16:31:50 +0200 Subject: [PATCH] fix(ui) : pt-1 sur InputTextArea pour aligner son haut avec les inputs Co-Authored-By: Claude Opus 4.8 (1M context) --- app/components/malio/input/InputTextArea.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/malio/input/InputTextArea.vue b/app/components/malio/input/InputTextArea.vue index dd24184..d680eac 100644 --- a/app/components/malio/input/InputTextArea.vue +++ b/app/components/malio/input/InputTextArea.vue @@ -144,7 +144,9 @@ const props = withDefaults( ) const mergedGroupClass = computed(() => - twMerge('flex flex-col w-full', props.groupClass), + // pt-1 (4px) aligne le haut de la textarea avec les inputs floating-label, + // qui centrent un champ de 40px dans un groupe h-12 (≈ 4px de décalage en haut). + twMerge('flex flex-col w-full pt-1', props.groupClass), ) const attrs = useAttrs()