How can I alter the background color of a RaisedButton without having the CSS class name appear in the autogenerated div?
Here is the button:
<RaisedButton className="access-login" label="Acceder" type="submit"/>
This is the specified CSS:
.access-login{
background-color: #d17817 !important;
}
Any suggestions for achieving this without using inline CSS?
Thank you to everyone for your help!