From 857dc2cc00b88180d5b40092cdffd94b4bba5e0c Mon Sep 17 00:00:00 2001 From: Chris Humboldt Date: Wed, 15 Nov 2017 11:36:22 +0800 Subject: [PATCH 1/3] Needed to change the execute mixin name. Oooops. --- build/sass/css/_execute.scss | 2 +- build/sass/propel.scss | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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", From cf484ab09011154a6ea82b729b61cb4ac6df93c9 Mon Sep 17 00:00:00 2001 From: Chris Humboldt Date: Wed, 15 Nov 2017 11:38:48 +0800 Subject: [PATCH 2/3] Needed to change the execute mixin name. Oooops. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index f1310a5..9918b18 100644 --- a/README.md +++ b/README.md @@ -518,6 +518,14 @@ Start by including the necessary files. ``` +You can also build the SASS out if you wish to include it 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 From 9d00ab524aa8400106d7fe8f7af0096661149dfb Mon Sep 17 00:00:00 2001 From: Chris Humboldt Date: Wed, 15 Nov 2017 11:40:23 +0800 Subject: [PATCH 3/3] Needed to change the execute mixin name. Oooops. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 9918b18..8bfde7c 100644 --- a/README.md +++ b/README.md @@ -518,11 +518,10 @@ Start by including the necessary files. ``` -You can also build the SASS out if you wish to include it in one production file. See an example below. +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; ```