• kishore kumar 503
  • NEWBIE
  • 0 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
Hi everyone,
Iam trying to drag and drop files using LWC,I completed drag and drop But here dispalying Drop zone size is very small,here i want to increse dropzone size,
Now iam getting like this 
User-added image
Code:
HTML:
 <lightning-file-upload 
        class="dragbox"
        name="fileUploader"
        accept={acceptedFormats}
        record-id={recordId}
        onuploadfinished={handleUploadFinished}
        multiple>
      </lightning-file-upload>

CSS
.dragbox{
    position: relative;
    
    text-align: center;
    height: 200px;
    width: 100%;
    min-height: 0px !important;
}

I want to increse dropzone size width and height.
Please help me