We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a solution to increase the height of the drop area? The question was raised on Stackoverflow... https://stackoverflow.com/questions/56813374/how-to-increase-dimensions-of-filepond-drop-area-in-react-js But I also notice that by increasing the size in the css :
.filepond--root, .filepond--root .filepond--drop-label { height: 200px; }
the area no longer displays the downloaded images. Thanks
The area is too small for my page
A size of at least 200px would be suitable
The text was updated successfully, but these errors were encountered:
if you set the height the drop area will be larger, but it will also not grow with content.
height
You can however use min-height: 200px; and then set a background color on the .filepond--root itself.
min-height: 200px;
.filepond--root
See: https://stackblitz.com/edit/github-dca26j?file=index.html
Sorry, something went wrong.
Great ! Thanks
No branches or pull requests
Is there an existing issue for this?
Is your feature request related to a problem? Please describe.
Is there a solution to increase the height of the drop area?
The question was raised on Stackoverflow...
https://stackoverflow.com/questions/56813374/how-to-increase-dimensions-of-filepond-drop-area-in-react-js
But I also notice that by increasing the size in the css :
the area no longer displays the downloaded images.
Thanks
Describe the solution you'd like
The area is too small for my page
Describe alternatives you've considered
A size of at least 200px would be suitable
The text was updated successfully, but these errors were encountered: