Is there an existing issue for this?
Have you updated Vue FilePond, FilePond, and all plugins?
Describe the bug
When a fixed height is set on .filepond--root, dropping multiple files causes a scrollbar to appear on .filepond--list-scroller. That's great but this css rule sets right: 0 :
.filepond--list-scroller[data-state='overflow'] .filepond--list {
bottom: 0;
right: 0;
}
It overrides this rule:
.filepond--list {
left: 0.75em;
right: 0.75em;
}
As a result, the file previews are no longer centered in the drop box.
Reproduction
Just upload files on a filepond with this css rule :
.filepond--root {
max-height: 20rem;
}
Environment
- OS: Windows 11
- Browser: Firefox 142.0.1 (64 bits)
- Vue version: 3.4.15
Is there an existing issue for this?
Have you updated Vue FilePond, FilePond, and all plugins?
Describe the bug
When a fixed height is set on
.filepond--root, dropping multiple files causes a scrollbar to appear on.filepond--list-scroller. That's great but this css rule setsright: 0:It overrides this rule:
As a result, the file previews are no longer centered in the drop box.
Reproduction
Just upload files on a filepond with this css rule :
Environment