Importing Compass styles with Sass using Yeoman -
i created project using yo webapp
(with generator-webapp
installed obviously). fine, i'm still missing something. i'm sure it's such easy answer i'll never come because i'll embarrassed.
i want use compass, comes out of box yeoman, don't know how. mean, @import "compass...etc"
inside sass files won't work since inside app/bower_components
(the default path sass @import
s specified inside gruntfile.js
) there's no compass
directory.
what should in order import compass stylesheets?
you can use compass do. if set vanilla compass project compass create
, there compass
folder either. if want use of helpers compass ships with, can import them described in documentation, e.g.
@import "compass/css3"; .mybox { @include box-shadow(red 2px 2px 10px); }
main.scss
Comments
Post a Comment