1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-20 12:21:35 +02:00

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
This commit is contained in:
Kyle Tsang
2021-03-30 23:07:00 -07:00
committed by GitHub
parent 90c9059784
commit 91fa809529

View File

@@ -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;