smartgravity / grav-theme-bones

A Grav theme built with Foundation.
MIT License
28 stars 8 forks source link

Scss util/util missing? #30

Open butchewing opened 8 years ago

butchewing commented 8 years ago

settings.scss is importing @import 'util/util'; but, I do not see it anywhere. Is it safe to just omit this?

vemacs commented 8 years ago

I got this to work by specifying load paths in sass:

sass --precision 10 --update --force --sourcemap=none -I bower_components/foundation-sites/scss/ -I bower_components/motion-ui/ scss:css
butchewing commented 8 years ago

I got this to work by adding the path to the bower_components:

@import '../bower_components/foundation-sites/scss/util/util';