Fix file input for mobile

This commit is contained in:
samy
2025-06-16 08:42:13 -10:00
parent 2b93fa0001
commit 64eece8ec2
4 changed files with 36 additions and 11 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ class Input extends Component
public ?string $prefix = null,
) {
$baseClass = $this->type === 'file' ? 'file-input file-input-bordered w-full' : 'input input-bordered w-full';
$baseClass = $this->type === 'file' ? 'file-input w-full' : 'input input-bordered w-full';
$this->initFormField(
name: $name,