SASS function px2em

Just a little SASS helper to convert px to em during writing CSS.

@function px2em ($font_size, $base_font_size: 16)
  @return ($font_size / $base_font_size) + em

Usage:

article
  font-size: px2em(20)

Is compiled to:

article {
  font-size: 1.25em;
}

and

article
   font-size: px2em(20,20)

Is compiled to:

article {
   font-size: 1em;
 }