From db9a44d4b5b365a14677dd95c1484129d02684ad Mon Sep 17 00:00:00 2001 From: Sam Date: Wed, 12 Apr 2017 13:37:27 -0400 Subject: [PATCH] we need theme vars when building theme css --- lib/stylesheet/compiler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stylesheet/compiler.rb b/lib/stylesheet/compiler.rb index 7ddf1066898..b82c5c9d40c 100644 --- a/lib/stylesheet/compiler.rb +++ b/lib/stylesheet/compiler.rb @@ -19,7 +19,7 @@ module Stylesheet if Importer.special_imports[asset.to_s] filename = "theme.scss" - file = "@import \"#{asset}\";" + file = "@import \"theme_variables\"; @import \"#{asset}\";" else filename = "#{asset}.scss" path = "#{ASSET_ROOT}/#{filename}"