How to change button color for dropzone widget ?

0
  Hi all , version  :  Studio Pro 8.18.2. widget  : dropzobe https://marketplace.mendix.com/link/component/916 How to change color  button or create new button ?
asked
1 answers
2

You  put a class on the dropzone widget.

Then in the sass file create the class, within it target the class of the button and set the color.
After this change compile your sass file with a tool like calypso

The css should look something similar to:

.myclass{
   .mx-button{ color:green;}

}

answered