From f1fee877e70d830285176b4a447b6ab0372e84ba Mon Sep 17 00:00:00 2001 From: =?utf8?q?Eduardo=20Sanz=20Garc=C3=ADa?= Date: Thu, 14 Feb 2019 18:02:46 +0000 Subject: [PATCH] refactor: set border style to solid and hide pieces --- scss/util/_mixins.scss | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scss/util/_mixins.scss b/scss/util/_mixins.scss index 18e3f4a49..3a4b18759 100644 --- a/scss/util/_mixins.scss +++ b/scss/util/_mixins.scss @@ -44,29 +44,25 @@ width: 0; height: 0; - border-style: inset; + border-style: solid; border-width: $triangle-size; content: ''; @if ($triangle-direction == down) { border-bottom-width: 0; - border-top-style: solid; border-color: $triangle-color transparent transparent; } @if ($triangle-direction == up) { border-top-width: 0; - border-bottom-style: solid; border-color: transparent transparent $triangle-color; } @if ($triangle-direction == right) { border-right-width: 0; - border-left-style: solid; border-color: transparent transparent transparent $triangle-color; } @if ($triangle-direction == left) { border-left-width: 0; - border-right-style: solid; border-color: transparent $triangle-color transparent transparent; } } -- 2.47.2