diff --git a/README.md b/README.md index f1310a5..8bfde7c 100644 --- a/README.md +++ b/README.md @@ -518,6 +518,13 @@ Start by including the necessary files. ``` +Alternatively you can also build the SASS out if you wish to include all your CSS in one production file. See an example below. + +```sass +@import "rocket-propel/build/sass/import"; +@include rocket-propel-css; +``` + Now class your HTML to manage your layout. For example: ```html diff --git a/build/sass/css/_execute.scss b/build/sass/css/_execute.scss index 0f0af86..4a7dc69 100644 --- a/build/sass/css/_execute.scss +++ b/build/sass/css/_execute.scss @@ -2,7 +2,7 @@ @author Chris Humboldt **/ -@mixin mod-propel-css() { +@mixin rocket-propel-css() { @include mod-propel-global; @include mod-propel-layout; diff --git a/build/sass/propel.scss b/build/sass/propel.scss index 429acc5..5f19896 100644 --- a/build/sass/propel.scss +++ b/build/sass/propel.scss @@ -3,4 +3,4 @@ **/ @import "import"; -@include mod-propel-css; +@include rocket-propel-css; diff --git a/package.json b/package.json index 25c7b78..143fb2f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rocket-propel", - "version": "3.1.0", + "version": "3.1.1", "description": "A lightweight SASS mixin library and responsive CSS layout engine.", "repository": { "type": "git",