After using dropzone to upload multiple files, I noticed that the icons are displaying outside of the designated box. In the image below, the dropzone form is highlighted in yellow, but when I select numerous files, they overflow and appear outside the form. I have set the CSS for my dropzone as follows:
#my-dropzone{
width:100%;
height:300px;
background:var(--lightYellow);
border:1pt solid #555;
border-radius:3px;
}
It seems like a CSS issue, but I am unable to resolve it. I attempted to include
overflow-y:auto;
to implement a scroll, but unfortunately, it did not work as expected.