Skip to content
Snippets Groups Projects
_functions.scss 168 B
Newer Older
pmarsceill's avatar
pmarsceill committed
@function rem($size, $unit: "") {
Patrick Marsceill's avatar
Patrick Marsceill committed
  $remSize: $size / $root-font-size;

  @if ($unit == false) {
    @return #{$remSize};
pmarsceill's avatar
pmarsceill committed
  } @else {
Patrick Marsceill's avatar
Patrick Marsceill committed
    @return #{$remSize}rem;
  }
}