Very nice screencast, I like the suggestion of using SCSS to handle the importing of additional SCSS files. Its worth noting though that Sprockets won't detect changes to the dependent stylesheets when you're using @import so you will probably want to add
*= depends_on "projects"
to your application.css.scss so that changes to that file will rebuild the application.css file. Hopefully once things have landed properly an SCSS @import will handle this.
Very nice screencast, I like the suggestion of using SCSS to handle the importing of additional SCSS files. Its worth noting though that Sprockets won't detect changes to the dependent stylesheets when you're using @import so you will probably want to add
to your application.css.scss so that changes to that file will rebuild the application.css file. Hopefully once things have landed properly an SCSS @import will handle this.