From a0b1ccc61c5f0743723cb8850a96f3a57a98306b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Eduardo=20Sanz=20Garc=C3=ADa?= Date: Thu, 14 Feb 2019 18:00:25 +0000 Subject: [PATCH] refactor: use more specific `border` rules The problem with `border` shorthand property is that any omitted sub-values will be set to their initial value. In this case color is omitted. It is better to be more specific. --- scss/util/_mixins.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/util/_mixins.scss b/scss/util/_mixins.scss index c256dc600..18e3f4a49 100644 --- a/scss/util/_mixins.scss +++ b/scss/util/_mixins.scss @@ -44,7 +44,8 @@ width: 0; height: 0; - border: inset $triangle-size; + border-style: inset; + border-width: $triangle-size; content: ''; -- 2.47.2