From b0d6a00bb79031b4d3c83a71a8284ea3b2ded88d Mon Sep 17 00:00:00 2001 From: hellowesley <15952538+hellowesley@users.noreply.github.com> Date: Sat, 27 Jul 2019 16:14:28 -0700 Subject: [PATCH] fix npm build bug --- src/assets/scss/core/icons/_icon.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/assets/scss/core/icons/_icon.scss b/src/assets/scss/core/icons/_icon.scss index 966192f3..f7ed0de3 100644 --- a/src/assets/scss/core/icons/_icon.scss +++ b/src/assets/scss/core/icons/_icon.scss @@ -28,7 +28,7 @@ } + .icon-text { - width: calc(100% - $icon-size-xl - 1); + width: calc(100% - #{$icon-size-xl} - 1); } } @@ -44,7 +44,7 @@ } + .icon-text { - width: calc(100% - $icon-size-lg - 1); + width: calc(100% - #{$icon-size-lg} - 1); } } @@ -60,6 +60,6 @@ } + .icon-text { - width: calc(100% - $icon-size-sm - 1); + width: calc(100% - #{$icon-size-sm} - 1); } }