gss / engine

GSS engine
http://gss.github.io
MIT License
2.86k stars 105 forks source link

Compatibility with Sass #160

Open josephfinlayson opened 9 years ago

josephfinlayson commented 9 years ago

Is it possible to integrate GSS with a SCSS/SASS based project? How would you recommend doing this?

Inviz commented 9 years ago

Unfortunately sass parser might be too strict to produce GSS constraints as is. But there's unquote() helper which allows you to output strings.

#button {
  width: unquote("<= ::window[width]");
}

You might want to use a separate stylesheet for gss, as inline css may be slower/clunkier