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:
authorghost_32 <kalash.strt@gmail.com>2021-08-23 10:18:29 +0300
committerGitHub <noreply@github.com>2021-08-23 10:18:29 +0300
commit6cf52ed5f79815369e4737f82d45fbb5eb59a459 (patch)
tree0bc4712c15f6e301227be0ee41fa46a9d017f02c /scss/_variables.scss
parent9e1d81a851cac268ca70e95d62c3e968e7293b41 (diff)
Fix `$dropdown-link-hover-color` variable color value in _variable.scss (#34779)
Diffstat (limited to 'scss/_variables.scss')
-rw-r--r--scss/_variables.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 1700f99413..9262ca4957 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -1167,7 +1167,7 @@ $dropdown-divider-margin-y: $spacer * .5 !default;
$dropdown-box-shadow: $box-shadow !default;
$dropdown-link-color: $gray-900 !default;
-$dropdown-link-hover-color: shade-color($gray-900, 10%) !default;
+$dropdown-link-hover-color: shade-color($dropdown-link-color, 10%) !default;
$dropdown-link-hover-bg: $gray-200 !default;
$dropdown-link-active-color: $component-active-color !default;