Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Tsang <6854874+kyletsang@users.noreply.github.com>2021-03-31 09:07:00 +0300
committerGitHub <noreply@github.com>2021-03-31 09:07:00 +0300
commit91fa809529c1b38600118be9922e2085fd200a77 (patch)
tree393f6c5a7bdeba5b6d45b1fbe0b4fe3cc450cf7f /scss/_variables.scss
parent90c9059784dc75c37f04e1a1dfdfa0f4f03772bd (diff)
Make .nav-link color consistent when using buttons (#33478)
* Make .nav-link color consistent when using buttons * Set $nav-link-hover-color to $link-hover-color as default
Diffstat (limited to 'scss/_variables.scss')
-rw-r--r--scss/_variables.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 7558224f9d..8e36bd59b1 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -917,8 +917,8 @@ $nav-link-padding-y: .5rem !default;
$nav-link-padding-x: 1rem !default;
$nav-link-font-size: null !default;
$nav-link-font-weight: null !default;
-$nav-link-color: null !default;
-$nav-link-hover-color: null !default;
+$nav-link-color: $link-color !default;
+$nav-link-hover-color: $link-hover-color !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;