@@ -26,7 +26,7 @@ export function ErrorList({
2626 return (
2727 < ul id = { id } className = "flex flex-col gap-1" >
2828 { errorsToRender . map ( ( e ) => (
29- < li key = { e } className = "text-[10px] text- foreground-destructive" >
29+ < li key = { e } className = "text-foreground-destructive text-[10px] " >
3030 { e }
3131 </ li >
3232 ) ) }
@@ -57,7 +57,7 @@ export function Field({
5757 aria-describedby = { errorId }
5858 { ...inputProps }
5959 />
60- < div className = "min-h-[32px] px-4 pb-3 pt-1" >
60+ < div className = "min-h-[32px] px-4 pt-1 pb-3 " >
6161 { errorId ? < ErrorList id = { errorId } errors = { errors } /> : null }
6262 </ div >
6363 </ div >
@@ -101,7 +101,7 @@ export function OTPField({
101101 < InputOTPSlot index = { 5 } />
102102 </ InputOTPGroup >
103103 </ InputOTP >
104- < div className = "min-h-[32px] px-4 pb-3 pt-1" >
104+ < div className = "min-h-[32px] px-4 pt-1 pb-3 " >
105105 { errorId ? < ErrorList id = { errorId } errors = { errors } /> : null }
106106 </ div >
107107 </ div >
@@ -131,7 +131,7 @@ export function TextareaField({
131131 aria-describedby = { errorId }
132132 { ...textareaProps }
133133 />
134- < div className = "min-h-[32px] px-4 pb-3 pt-1" >
134+ < div className = "min-h-[32px] px-4 pt-1 pb-3 " >
135135 { errorId ? < ErrorList id = { errorId } errors = { errors } /> : null }
136136 </ div >
137137 </ div >
@@ -191,10 +191,10 @@ export function CheckboxField({
191191 < label
192192 htmlFor = { id }
193193 { ...labelProps }
194- className = "self-center text-body-xs text-muted-foreground"
194+ className = "text-body-xs text-muted-foreground self-center "
195195 />
196196 </ div >
197- < div className = "px-4 pb-3 pt-1" >
197+ < div className = "px-4 pt-1 pb-3 " >
198198 { errorId ? < ErrorList id = { errorId } errors = { errors } /> : null }
199199 </ div >
200200 </ div >
0 commit comments