From 3fdd55e491a0527c73894915e7d643698a53c2d4 Mon Sep 17 00:00:00 2001 From: Tvrtko Date: Thu, 26 Nov 2015 00:00:30 +0100 Subject: [PATCH] fixes: #7215 change up/down direction keywords to top/bottom --- scss/util/_mixins.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/util/_mixins.scss b/scss/util/_mixins.scss index fdd15bb17..f275542c6 100644 --- a/scss/util/_mixins.scss +++ b/scss/util/_mixins.scss @@ -22,11 +22,11 @@ height: 0; border: inset $triangle-size; - @if ($triangle-direction == down) { + @if ($triangle-direction == bottom) { border-color: $triangle-color transparent transparent; border-top-style: solid; } - @if ($triangle-direction == up) { + @if ($triangle-direction == top) { border-color: transparent transparent $triangle-color; border-bottom-style: solid; } -- 2.47.2