Created
July 11, 2019 18:37
-
-
Save sulram/fa5d1ca1dd8b9ebe444cb55594ab74ce to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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