important()

@function important($important: false) {
  @if $important == true {
    $important: ' !important';
  } @else if $important == false {
    $important: '';
  }
  @return #{$important};
}

Last updated