how to convert a sass\' variable value(s) to negative?
$border: 5px 0px 2px -5px; $border-neg: negative($border); // value $border-neg: -5px 0px -2px 5px; @func