twitter bootstrap - Why do Sass variable arguments throw an error? -
i'm using sass twitter bootstrap , getting error uses variable argument.
the solution see searching problem make sure i'm on sass 3.2.x. on 3.3.0.alpha.101, uninstalled , reinstalled 3.2.8, i'm still getting error:
invalid css after "...-shadow($shadow": expected ")", "...) {"
the code that's throwing error:
@mixin box-shadow($shadow...) { -webkit-box-shadow: $shadow; -moz-box-shadow: $shadow; box-shadow: $shadow; }
i should mention i'm using livereload 2.3.8.
after editing question include i'm using livereload, thought try using good-ol'-fashioned sass-watch
, there wasn't problem.
i've reported bug livereload…
Comments
Post a Comment