/* functions */
@function spacing($value) {
  $result: $spacing-default * $value;

  @return $result;
}

/**
* Based on styleguide, the incrementation is always +8px;
*/
@function line-height($value) {
  $result: $value + ($spacing-default * 2);

  @return $result;
}
