Compass / compass

Compass is no longer actively maintained. Compass is a Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain.
http://compass-style.org
Other
6.72k stars 1.18k forks source link

Compass Sprites Throwing Errors When Compiling #1966

Open jaydombroski opened 9 years ago

jaydombroski commented 9 years ago

When compiling my css in compass with a sprite, I get the following errors:

error scss/app.scss (Line 107 of icons/*.png: Mixin sprites doesn't have an argument named $separator.)

The funny thing is, the sprite image is being made, but the css is throwing the error. I set up following Foundation's instructions.

Below is my setup.

code in app.scss:

@import "compass/utilities/sprites";
@import "icons/*.png";
@include all-icons-sprites;

Folder Structure

    + www
      + sass
        - app.scss
      + images
        + icons
          - thumbsup.png
      + config.rb

config.rb

http_path = "/"
css_dir = "stylesheets"
sass_dir = "scss"
images_dir = "images"

Thanks in advance!

Jay

jaydombroski commented 9 years ago

Any advice on how to debug and come up with a solution?