You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's a little more information: It seems that all decimal litterals are parsed truncated, even in fractions. For example:
.something {
margin: (4.5/9);
}
is compiled to
.something {
margin:0.44444 }
when the value of the margin should clealy be 0.5, and not 0.4444 (Which by the way is equal to 4/9, so the 4.5 value was truncated to 4, and then the fraction was calculated based on the truncated number.)
I've encountered a strange behavior while using this plugin. For some reason all decimal litterals in my .scss file are truncated.
Here is an example of .scss code that causes the problem for me:
The code that is generated is the following:
This happens with version 0.1.1 of libsass-maven-plugin on Ubuntu 14.04.
This issue was previously reported to libsass issue 923, but was closed as "cannot reproduce"
The text was updated successfully, but these errors were encountered: