KarimMokhtar / react-drag-drop-files

Light and simple Reactjs drag and drop files library to use with very flexible options to change, so you put whatever the design you want for your drop-area. Users can drag and drop or even select the file anywhere in the window.
MIT License
248 stars 91 forks source link

style drag and drop border #96

Closed aayalapalacin closed 2 weeks ago

aayalapalacin commented 1 year ago

Hello! Any way to change default border styling? Seems like it's currently border style dotted and color blue. Thanks!

dzyubadmytro commented 1 year ago
<FileUploader
  classes="myClass"
  />

  then

  .myClass {
     border-style: solid;
  }
KarimMokhtar commented 2 weeks ago
<FileUploader
  classes="myClass"
  />

  then

  .myClass {
     border-style: solid;
  }

almost correct. you just need to add !important to override the default value: border-style: solid !important;