Added sass-globbing, allowing plugin stylesheets to be auto-imported from the assets/stylesheets/plugins directory

This commit is contained in:
Brandon Mathis 2013-03-11 01:40:41 -05:00
parent 05db158fec
commit 9364f37ac7
5 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,6 @@
/*
Add plugin stylesheets to this directory and they will be automatically
Imported. Load order is alphabetical and styles can be overriden in
custom/_style.scss which is loaded after all plugin stylesheets.
*/

View file

@ -7,4 +7,5 @@
@import "custom/layout";
@import "base";
@import "partials";
@import "plugins/**/*";
@import "custom/styles";