Skip to content

Commit

Permalink
Use Sass variable for accordion color (#37182)
Browse files Browse the repository at this point in the history
Fixes #37144
  • Loading branch information
mdo committed Sep 21, 2022
1 parent 0173f7a commit 37e2e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/_variables.scss
Expand Up @@ -1256,7 +1256,7 @@ $card-group-margin: $grid-gutter-width * .5 !default;
// scss-docs-start accordion-variables
$accordion-padding-y: 1rem !default;
$accordion-padding-x: 1.25rem !default;
$accordion-color: var(--#{$prefix}body-color) !default;
$accordion-color: $body-color !default; // Sass variable because of $accordion-button-icon
$accordion-bg: $body-bg !default;
$accordion-border-width: $border-width !default;
$accordion-border-color: var(--#{$prefix}border-color) !default;
Expand Down

0 comments on commit 37e2e7e

Please sign in to comment.