@function ternary($condition, $val1, $val2) {
  @return if($condition, $val1, $val2);
}
