We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently rem and em functions are returning a string, because the unit is incorrectly appended. See: https://css-tricks.com/snippets/sass/correctly-adding-unit-number/
tentcss/src/02_tools/_scaling.scss
Lines 15 to 17 in bac3d00
$return: append($return, ($val / $root + rem)); } @else { $return: append($return, ($val * $root + px));
Lines 29 to 31 in bac3d00
$return: append($return, ($val / $root + em)); } @else { $return: append($return, ($val * $root + px));
The text was updated successfully, but these errors were encountered:
It looks like newer versions of Node Sass are breaking this. I'll be looking into doing a refactor for the current version of Tent to address this.
Sorry, something went wrong.
ulinaaron
No branches or pull requests
Currently rem and em functions are returning a string, because the unit is incorrectly appended.
See: https://css-tricks.com/snippets/sass/correctly-adding-unit-number/
tentcss/src/02_tools/_scaling.scss
Lines 15 to 17 in bac3d00
tentcss/src/02_tools/_scaling.scss
Lines 29 to 31 in bac3d00
The text was updated successfully, but these errors were encountered: