From b97cfa163b5098db70e03b27c91fca5dde9c267e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 16 Feb 2021 15:12:15 -0800 Subject: [PATCH] fix variable name --- scss/_nav.scss | 2 +- scss/_variables.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/_nav.scss b/scss/_nav.scss index 600f38a37289..3d3117af18bf 100644 --- a/scss/_nav.scss +++ b/scss/_nav.scss @@ -28,7 +28,7 @@ &:focus { outline: 0; - box-shadow: $nav-focus-box-shadow; + box-shadow: $nav-link-focus-box-shadow; } // Disabled state lightens text diff --git a/scss/_variables.scss b/scss/_variables.scss index 058ab9e8b22d..7f4dca3c73bc 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -928,7 +928,7 @@ $nav-link-color: null !default; $nav-link-hover-color: null !default; $nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default; $nav-link-disabled-color: $gray-600 !default; -$nav-focus-box-shadow: $focus-ring-box-shadow !default; +$nav-link-focus-box-shadow: $focus-ring-box-shadow !default; $nav-tabs-border-color: $gray-300 !default; $nav-tabs-border-width: $border-width !default;