This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Bourbon's transition mixin doesn't work with transform #1227
Labels
Comments
Version info for the broken case:
It seems to work correctly with node-sass 3.3.3 and libsass 3.2.5. |
I'm up against this issue too |
I found no other solution than to downgrade node-sass to 3.3.3. |
@raldred @akheron That or override the |
Thanks for the report. Apologies for the delay I've been away. This is a known issue the latest LibSass sass/libsass#1645 A fix is planned next LibSass release. |
thanks @brianreavis that works in the interim, thanks. |
This is fixed in the upcoming 3.5.0-beta. Subscribe to #1349 for further updates. |
This was referenced Mar 31, 2016
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Here's my scss file:
With ruby sass I get the following correct output:
With node-sass I get the following incorrect output:
I've debugged this, and it seems to boil down to an issue with variable arguments and iterating over them with
@each
. Here's another test file:With ruby sass:
With node-sass:
So it looks as if the list was somehow truncated to only contain the first item by
@each
.UPDATE: Fixed sass outputs for the bourbon test
The text was updated successfully, but these errors were encountered: