From a9daa3efbf01535f9384ea22888ae1da3ff58f6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benoit=20B=C3=A9n=C3=A9zech?= Date: Thu, 17 Aug 2017 21:09:23 +0200 Subject: [PATCH] [Bug] Fix user-land scss compilation (#1456) Without this I get `File to import not found or unreadable: common/icons.` --- packages/core/src/components/icon/_icons.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/components/icon/_icons.scss b/packages/core/src/components/icon/_icons.scss index f1845e91db..a3ff86f379 100644 --- a/packages/core/src/components/icon/_icons.scss +++ b/packages/core/src/components/icon/_icons.scss @@ -3,7 +3,7 @@ // of the license at https://github.com/palantir/blueprint/blob/master/LICENSE // and https://github.com/palantir/blueprint/blob/master/PATENTS -@import "common/icons"; +@import "../../common/icons"; #{$icon-classes} { display: inline-block;