milohuang / reverie

Reverie is a versatile HTML5 responsive WordPress framework based on ZURB's Foundation.
http://theakiba.com/reverie/
MIT License
918 stars 196 forks source link

Updating Foundation gem to latest 4.3.2 public release creates syntax error #240

Open tnog opened 10 years ago

tnog commented 10 years ago

I just updated to the latest public release and was getting the following syntax error when compiling my css files: "Syntax error: 80em*px isn't a valid css value foundation..."

The fix is easy enough, on line 17 of scss/_settings.php change:

$em-base: 16 !default;

to

$em-base: 16px !default;

This pull request has more details on the issue: https://github.com/zurb/foundation/pull/2329