diff options
| author | Patrick H. Lauke <[email protected]> | 2020-06-23 21:00:28 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-06-23 21:00:28 +0100 |
| commit | 02ff387daa3a6e684210da7ee47ad988a2352aac (patch) | |
| tree | d6f6ee3455ac0a35a50faedd1a3f69f32e85862f | |
| parent | 9882de80794ea09b7efe4e45f9d7077306a18cb1 (diff) | |
| download | bootstrap-02ff387daa3a6e684210da7ee47ad988a2352aac.tar.xz bootstrap-02ff387daa3a6e684210da7ee47ad988a2352aac.zip | |
Darken dropdown divider (#31131)
currently, `$gray-200` is practically imperceptible. switch to reusing `$dropdown-border-color`.
| -rw-r--r-- | scss/_variables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss index 9e8fd622e..d2260850c 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -914,7 +914,7 @@ $dropdown-border-color: rgba($black, .15) !default; $dropdown-border-radius: $border-radius !default; $dropdown-border-width: $border-width !default; $dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default; -$dropdown-divider-bg: $gray-200 !default; +$dropdown-divider-bg: $dropdown-border-color !default; $dropdown-divider-margin-y: $spacer / 2 !default; $dropdown-box-shadow: $box-shadow !default; |
