Ember-cli Node.js - Using Neat and Bourbon

I'm not sure how to properly include "Neat" in my ember-cli app.

I installed Bourbon using the ember-cli-bourbon addon and then just @import "bourbon" in my scss file.

Any suggestions?

+3


source to share


1 answer


You should be able to install neat via bower:

bower install neat --save

      



Then in your scss file after importing bourbon:

@import 'bourbon';
@import 'bower_components/neat/app/assets/stylesheets/neat';

      

+4


source







All Articles