Skip to content

Instantly share code, notes, and snippets.

@sulram
Created July 11, 2019 18:37
Show Gist options
  • Save sulram/fa5d1ca1dd8b9ebe444cb55594ab74ce to your computer and use it in GitHub Desktop.
Save sulram/fa5d1ca1dd8b9ebe444cb55594ab74ce to your computer and use it in GitHub Desktop.
@function responsive($value1, $value2, $width1: 320, $width2: 1920) {
$x1: $width1;
$x2: $width2;
$y1: $value1;
$y2: $value2;
$a: ($y2 - $y1) / ($x2 - $x1);
$b: ($x2 * $y1 - $x1 * $y2) / ($x2 - $x1);
@return calc(#{$a * 100vw} + #{$b * 1px});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment