From 3e5d294a2837c05ff8ad2b5cf791c13b2b706b58 Mon Sep 17 00:00:00 2001 From: Pete Richards Date: Tue, 22 Sep 2015 10:57:30 -0700 Subject: [PATCH] [SCSS] Fixed typo Changed tmpBorder mixin to specify '@include' instead of '@iclude'. This does not change the output CSS which means the tmpBorder mixin is not used anywhere and could be removed. --- platform/commonUI/general/res/sass/_mixins.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/commonUI/general/res/sass/_mixins.scss b/platform/commonUI/general/res/sass/_mixins.scss index 9625ed96af..cd683ee4de 100644 --- a/platform/commonUI/general/res/sass/_mixins.scss +++ b/platform/commonUI/general/res/sass/_mixins.scss @@ -378,7 +378,7 @@ } @mixin tmpBorder($c: #ffcc00, $a: 0.75) { - @inlude box-sizing(border-box); + @include box-sizing(border-box); border: 1px dotted rgba($c, $a); } @@ -402,4 +402,4 @@ @mixin s-stale($a: 0.5) { color: rgba($colorTelemFresh, $a) !important; font-style: italic; -} \ No newline at end of file +}