From c652491184faf8709b7d52d2303cc5b48a36fc19 Mon Sep 17 00:00:00 2001 From: "Jamie R. Rytlewski" Date: Thu, 23 Apr 2015 08:41:44 -0400 Subject: [PATCH] Removing the equal and putting in a colon From what I know of Sass, you cannot use `=` for setting variables. --- .../content/help/tutorials/configurable-variables.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compass-style.org/content/help/tutorials/configurable-variables.haml b/compass-style.org/content/help/tutorials/configurable-variables.haml index dacc08d73e..af285e8103 100644 --- a/compass-style.org/content/help/tutorials/configurable-variables.haml +++ b/compass-style.org/content/help/tutorials/configurable-variables.haml @@ -23,10 +23,10 @@ classnames: In order for these configurable variables to work correctly, you must set the variables *before* you import the module. For example: - $blueprint-grid-columns = 12 + $blueprint-grid-columns : 12 @import "blueprint/grid" Because of this, it is common to have one or more partials that set the constants first and get imported before any other imports in your stylesheet(s). This is commonly referred to as - the "base" stylesheet and is usually named `_base.scss` or `_base.sass`. \ No newline at end of file + the "base" stylesheet and is usually named `_base.scss` or `_base.sass`.