Trying to run a compass and zurb foundation project. When I use compass watch
to compile the project, it works perfectly fine. However, when attempting to compile using codekit, I encounter issues.
The initial error that pops up is:
Error in app.scss (Line 24 of _block-grid.scss: -0.625em*px isn't a valid CSS value.)
To address this, I traced back to the line in _block-grid.scss on Zurb's GitHub which referenced $block-grid-default-spacing
. By uncommenting
$block-grid-default-spacing: emCalc(20);
in my settings file, the issue was resolved, only to encounter the next error:
Error in app.scss (Line 111 of _type.scss: Incompatible units: 'px' and '.')
Despite having all installations properly set up and directing CodeKit to local versions of SASS and Compass, errors persist. Any suggestions on what steps I can take?
Interestingly, excluding the settings.scss
file results in successful compilation without any errors.