From 4d50ca10edd07b05dc50a301c7b158a5d4e9dfe3 Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Fri, 13 Jul 2018 14:31:13 +0200 Subject: [PATCH] Move border color to variable. --- src/icedream.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/icedream.scss b/src/icedream.scss index e6955bc..8460d1c 100644 --- a/src/icedream.scss +++ b/src/icedream.scss @@ -82,12 +82,12 @@ body { @if $icedream-nav-tab-fix { &:not(.active) { border: 1px transparent solid; - border-bottom-color: #aaa; + border-bottom-color: $rekt-border-color; &+div { // rules here for all but first child that don't follow an active tab &:hover { - border-left-color: #aaa; + border-left-color: $rekt-border-color; } } } @@ -95,13 +95,13 @@ body { &:not(:last-child) { // rules here for all but last child &:hover { - border-right-color: #aaa; + border-right-color: $rekt-border-color; } } // rules here for all children &:hover { border-bottom-color: transparent; - border-top-color: #aaa; + border-top-color: $rekt-border-color; } } }