Created
October 23, 2022 21:50
-
-
Save nex3/64b4cb1521cbeccf8bbe05ef75cd5b3c 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
$supports-first-class-calc: calc(1) == 1; | |
@function divide-portable($number1, $number2) { | |
@if $supports-first-class-calc { | |
@return calc($number1 / $number2); | |
} @else { | |
@return $number1 / $number2; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks so much for this! Works great 🙌