-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
Kit is not completely themable with sass variables #178
Comments
Can this issue and my proposed fix (expected behaviour) be confirmed or are there any concerns? |
…g material-kit in own scss
Hello @Lumrenion, Thank you for using our products and for this great feedback. I will talk with the team and if everything looks good, we will integrate some of your changes from above and we will update the product. All the best, |
Prerequisites
Please answer the following questions for yourself before submitting an issue.
Description
Bootstrap is intended to be rebranded by overwriting only a few theming variables. This behaviour is very convenient and can be easily adapted in the material kit. I noticed several cases where this is not possible.
Expected Behavior
$bg-dark
is expected to use bootstrap variable$dark
instead ofgray-900
.card-header-primary
:background: linear-gradient(60deg, lighten($bg-primary, 10%), darken($bg-primary, 10%));
Current Behavior
$bg-*
variables$bg-dark: $grey-900;
.card-header-primary
:background: linear-gradient(60deg, $purple-400, $purple-700);
The text was updated successfully, but these errors were encountered: