-
Notifications
You must be signed in to change notification settings - Fork 1.3k
@at-root doesn't work #559
Comments
Oh! I see this feature is already asked on this issues github.com/sass/libsass/issues/353. I will have to wait |
Yup, we would have to wait for libsass to bring the support of Lets follow this issue at sass/libsass#353. |
This have been solved in libsass back in start of january, when does it get enabled inside nodesass? |
@sp90, short answer: in the node-sass release which will be published after LibSass vNext is released. Summary and gotchas: node-sass v2.0.x corresponds to LibSass' currently latest v3.1.0. node-sass always correspond to the tagged release of LibSass, as opposed to a random commit. To check the versions, you can either do: node-sass --help
# or, if you have not installed globally
node_modules/.bin/node-sass --help
# or if you prefer io.js
iojs node_modules/node-sass/bin/node-sass --help
# (among other things) it will print something like:
# node-sass version: 2.0.1
# libsass version: 3.1.0
# and from code usage:
# in node.js or io.js interactive console:
require('node-sass').info();
# or by script evaluation from CLI:
node -p "require('node-sass').info()"
# prints
node-sass version: 2.0.1
libsass version: 3.1.0 |
@am11 thanks great answer, +1 |
I just tried this in my repl and it looks like it works now. (three years later) My
|
The function
@at-root
isn't supportedThis feature is really useful especially in order to use this trick : Declaring a CSS Animation @keyframes Directly on an Element using Sass
The text was updated successfully, but these errors were encountered: