Let’s be nice.

Here’s a Sass function that replaces !important with please() . Have fun.

//the function
@function please(){
  @return !important;
}
    
//usage
strong {
  font-weight: normal please();
}