File upload preview green gradient
How do I remove the green gradient so that I can see the whole logo while uploading it ?

Solution
the file uploader uses Filepond, so you can check the classes and overwrite them in css
<?php
Forms\Components\FileUpload::make('logo')
->rules([
'image', // Must be an image file
'mimes:jpeg,png,jpg', // Allowed file extensions
'max:2048', // Maximum file size in kilobytes (adjust as needed)
])
->disk('company_logo') // from filesystems.php
->helperText('Recommended size 300px wide. Maximum file size 2mb. Allowed file type png, jpg, jpeg.')
->maxFiles(1),