I am using bootstrap4 and trying to change some button colors using SASS. In my custom SCSS file I have the following...
@import "node_modules/bootstrap/scss/bootstrap";
$theme-colors: (
"primary": red
);
When compiled, this is working correctly. Now I want to modify the disabled state of primary buttons in the same way.
I am struggling to find any examples. Can anyone point me to one?