How can I save the font size and line height in a Sass variable, like so:
$font-normal: 14px/21px;
When using this declaration, I notice that a division occurs as explained in the Sass documentation. Is there a way to prevent this division from happening?
Important: I am using the SCSS syntax.