I use hover, active and disabled to style Buttons.
But the problem is when the button is disabled the hover and ac
In sass (scss):
button { color: white; cursor: pointer; border-radius: 4px; &:disabled{ opacity: 0.4; &:hover{ opacity: 0.4; //this is what you want } } &:hover{ opacity: 0.9; } }