RadzenUpload Button works as a DropZone

If a user drags and drops a file on the RadzenUpload button the file is uploaded. Is there any way to create a larger area for the user to drop a file on and trigger the RadzenUpload?

Again, I would like to thank the team for such a wonderful tool Radzen Blazor Studio, the components and the support provided.

Hi @kkluth,

Possible solution can be to increase the button width. For example:

.rz-fileupload .rz-button {
    width: 100%;
    text-align: center;
}

upload-dd

Styling the button did the trick, thank you
I used padding to increase height and keep text centered.

<style>
    .rz-fileupload .rz-button {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 100px 0;
    border-radius:0;
}
</style>