@function calc-padding($height, $line-height, $border-top-width, $border-bottom-width, $ratio: 1.6) {
  $y: ($height - $line-height - $border-top-width - $border-bottom-width) / 2;
  $x: $y * $ratio;
  @return (y: $y, x: $x);
}
