From 5304c9639809a33c6d751ad2ededc2d9daaf1ea4 Mon Sep 17 00:00:00 2001 From: Perry Govier Date: Mon, 15 Dec 2014 11:54:49 -0600 Subject: [PATCH] fix(tabs): fix scss compile error on some versions of sass Closes #2719 --- scss/_tabs.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/_tabs.scss b/scss/_tabs.scss index 4daccbbc3c..70a7c4aa13 100644 --- a/scss/_tabs.scss +++ b/scss/_tabs.scss @@ -124,7 +124,7 @@ } @mixin tabs-background($style, $color, $border-color) { - &.#{$style} { + .#{$style} { .tabs, &> .tabs{ background-color: $color; @@ -143,7 +143,7 @@ } @mixin tabs-color($style, $color) { - &.#{$style} { + .#{$style} { .tab-item { color: rgba($color, $tabs-off-opacity); opacity: 1;