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
@var1: 2em; @var2: 1/2em; #myClass{ width: @var1*@var2 ; }
Output for this is:
#myClass {width: 1em};
But if we interchange the variables as:
#myClass{ width: @var2*@var1; }
#myClass {width: 1};
em is missing. :(
em
The text was updated successfully, but these errors were encountered:
Please use backticks to format your code.
I suppose it's a result of the #3047 bug. Quick workaround:
@var1: 2em; @var2: 1/2em*1em; #myClass{ width: @var2*@var1; }
Sorry, something went wrong.
Closing in favour of #3047.
No branches or pull requests
Output for this is:
But if we interchange the variables as:
Output for this is:
em
is missing. :(The text was updated successfully, but these errors were encountered: