feat(labeled-input): add Big labeled input field

This commit is contained in:
micha 2025-06-12 13:25:13 +02:00
parent 93a75b9214
commit af18024baf
2 changed files with 10 additions and 5 deletions

View file

@ -9,7 +9,7 @@ function Input({ className, type, ...props }: React.ComponentProps<'input'>) {
data-slot='input'
className={cn(
/* Text */
'text-text-input selection:text-text md:text-sm file:text-destructive file:text-sm placeholder:text-text-muted-input',
'text-text-input selection:text-text file:text-destructive file:text-sm placeholder:text-text-muted-input',
/* Background */
'bg-transparent selection:bg-muted-input file:bg-transparent',
/* Border */
@ -52,7 +52,7 @@ function Textarea({
rows={rows}
className={cn(
/* Text */
'text-text-input selection:text-text md:text-sm placeholder:text-text-muted-input',
'text-text-input selection:text-text placeholder:text-text-muted-input',
/* Background */
'bg-transparent selection:bg-muted-input',
/* Border */