Update to tailwind V4

This commit is contained in:
Jorge Vargas 2025-02-18 21:14:28 -06:00
parent fee27fa99e
commit 44ffb3d986
13 changed files with 262 additions and 434 deletions

View file

@ -9,7 +9,7 @@ export default function Input(props: PropsWithChildren<ComponentProps<'input'>>)
<label htmlFor={name} className='font-medium text-black'>
{children}:
</label>
<input {...attrs} name={name} className={clsx('bg-zinc-200 rounded p-2 mt-2 mb-3 text-black', className)} />
<input {...attrs} name={name} className={clsx('bg-zinc-200 rounded-md p-2 mt-2 mb-3 text-black', className)} />
</div>
)
}