fix: problèmes de taille des champs + Ajout d'un playground form #42

Merged
tristan merged 2 commits from feature/MUI-29-fix-plusieurs-problemes into develop 2026-05-11 07:37:50 +00:00
Showing only changes of commit c42309dd37 - Show all commits
+4 -4
View File
@@ -7,15 +7,15 @@
:name="name" :name="name"
:autocomplete="autocomplete" :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="[ :class="[
isFilled ? 'border-black' : 'border-m-muted', isFilled ? 'border-black' : 'border-m-muted',
disabled ? 'cursor-not-allowed text-black/60 border-m-muted' : 'cursor-text', disabled ? 'cursor-not-allowed text-black/60 border-m-muted' : 'cursor-text',
hasError hasError
? 'border-m-danger focus:border-m-danger focus:pl-[11px]' ? 'border-m-danger focus:border-m-danger'
: hasSuccess : hasSuccess
? 'border-m-success focus:border-m-success focus:pl-[11px]' ? 'border-m-success focus:border-m-success'
: 'focus:border-m-primary focus:pl-[11px]', : 'focus:border-m-primary',
textInput, textInput,
showCounterComputed ? 'pb-6' : '', showCounterComputed ? 'pb-6' : '',
rounded, rounded,