We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There should be an easy way to customize the color of the .card background.
.card
Right now the colors are hard coded inside
bootstrap/scss/_card.scss
Lines 123 to 141 in 1a6d0cc
Instead there should be a default similar to this:
// Cards $card-spacer-x: 1.25rem !default; $card-spacer-y: .75rem !default; $card-border-width: 1px !default; $card-border-radius: $border-radius !default; $card-border-color: rgba(0,0,0,.125) !default; $card-border-radius-inner: $card-border-radius !default; $card-cap-bg: #f5f5f5 !default; $card-bg: #fff !default; $card-primary-bg: $brand-primary !default; $card-success-bg: $brand-success !default; $card-info-bg: $brand-info !default; $card-warning-bg: $brand-warning !default; $card-danger-bg: $brand-danger !default; $card-link-hover-color: #fff !default;
The text was updated successfully, but these errors were encountered:
@cvrebert I can create a PR if you think this should be done.
Sorry, something went wrong.
Not happening with #22836—going to a Sass map based approach to generate these classes.
No branches or pull requests
There should be an easy way to customize the color of the
.card
background.Right now the colors are hard coded inside
bootstrap/scss/_card.scss
Lines 123 to 141 in 1a6d0cc
Instead there should be a default similar to this:
The text was updated successfully, but these errors were encountered: