How to calculate with SCSS variables from function
问题 I have a function which converts px to rem. For example: height: rem-calc(14px); // makes height: 1rem; Now I would like to calculate with it from variables. For example: $switch-track-width: rem-calc(50px); $switch-thumb-size: $switch-track-width / 2; // making it 25px or 1.7857rem in this case That doesn't work so I tried something else: $switch-thumb-size: ($switch-track-width / 2) + 0rem; $switch-thumb-size: (#{$switch-track-width} / 2) + 0rem; Both $switch-thumb-size examples aren't