After importing the bootstrap scss with the provided code snippet
@import "node_modules/bootstrap/scss/bootstrap";
I experimented with altering default bootstrap variables such as :
$border-radius: 1rem;
However, I encountered a challenge when attempting to utilize bootstrap colors in my custom CSS selectors. Despite trying the following code, it didn't successfully change the color:
aside a {
color: $success;
}