Is there a way to give SASS styles applied using the @extend feature the status of being !important? I tried this:
.somestyles { width: 1000px; } .importantstyle { @extend .somestyles !important; } Didn't work, but how might this be done? Or is it just not possible?